Skip to content

Commit

Permalink
prototype: Add some missing semicolons to the source tree. Closes #10…
Browse files Browse the repository at this point in the history
…659.
  • Loading branch information
tobie committed Dec 31, 2007
1 parent a427d4a commit f553d22
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG
@@ -1,5 +1,7 @@
*SVN*

* Add some missing semicolons to the source tree. Closes #10659. [Richard Quadling]

* Ensure Ajax.Response#getHeader returns null for missing headers in Opera. [Tobie Langel]

* Allow WEBrick to simulate slow or dropped connections and to ease Ajax request inspection. [Tobie Langel]
Expand Down
2 changes: 1 addition & 1 deletion src/event.js
Expand Up @@ -160,7 +160,7 @@ Object.extend(Event, (function() {
return false;

Event.extend(event);
handler.call(element, event)
handler.call(element, event);
};

wrapper.handler = handler;
Expand Down

0 comments on commit f553d22

Please sign in to comment.