prototype: Add some missing semicolons to the source tree. Closes #10659.
This commit is contained in:
parent
a427d4a1b0
commit
f553d2210e
|
@ -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]
|
||||
|
|
|
@ -160,7 +160,7 @@ Object.extend(Event, (function() {
|
|||
return false;
|
||||
|
||||
Event.extend(event);
|
||||
handler.call(element, event)
|
||||
handler.call(element, event);
|
||||
};
|
||||
|
||||
wrapper.handler = handler;
|
||||
|
|
Loading…
Reference in New Issue