js/core/event/event.js in rsence-pre-2.2.0.38 vs js/core/event/event.js in rsence-pre-2.2.2.0
- old
+ new
@@ -90,11 +90,11 @@
catch(e){}
}
Event.observers = false;
},
-/** Starts observing the named event of the element and
+/** Starts observing the named event of the element and
* specifies a callback function.
**/
observe: function(_elem, _name, _function, _useCapture) {
_useCapture = _useCapture || false;
Event._observeAndCache(_elem, _name, _function, _useCapture);
@@ -143,10 +143,10 @@
KEY_PAGEUP: 33,
KEY_PAGEDOWN: 34
};
-// Activates the garbage collector of Internet Explorer
+// Activates the garbage collector of Internet Explorer
// when the document is unloaded:
if (BROWSER_TYPE.ie && !BROWSER_TYPE.ie9) {
Event.observe(window, "unload", Event.unloadCache, false);
}