diff --git a/lib/OpenLayers/Events.js b/lib/OpenLayers/Events.js index a3a321ab91..35a4d34797 100644 --- a/lib/OpenLayers/Events.js +++ b/lib/OpenLayers/Events.js @@ -12,65 +12,65 @@ OpenLayers.Event = { /** - * Property: observers + * Property: observers * {Object} A hashtable cache of the event observers. Keyed by * element._eventCacheID - */ - observers: false, + */ + observers: false, /** - * Constant: KEY_BACKSPACE - * {int} - */ - KEY_BACKSPACE: 8, + * Constant: KEY_BACKSPACE + * {int} + */ + KEY_BACKSPACE: 8, /** - * Constant: KEY_TAB - * {int} - */ - KEY_TAB: 9, + * Constant: KEY_TAB + * {int} + */ + KEY_TAB: 9, /** - * Constant: KEY_RETURN - * {int} - */ - KEY_RETURN: 13, + * Constant: KEY_RETURN + * {int} + */ + KEY_RETURN: 13, /** - * Constant: KEY_ESC - * {int} - */ - KEY_ESC: 27, + * Constant: KEY_ESC + * {int} + */ + KEY_ESC: 27, /** - * Constant: KEY_LEFT - * {int} - */ - KEY_LEFT: 37, + * Constant: KEY_LEFT + * {int} + */ + KEY_LEFT: 37, /** - * Constant: KEY_UP - * {int} - */ - KEY_UP: 38, + * Constant: KEY_UP + * {int} + */ + KEY_UP: 38, /** - * Constant: KEY_RIGHT - * {int} - */ - KEY_RIGHT: 39, + * Constant: KEY_RIGHT + * {int} + */ + KEY_RIGHT: 39, /** - * Constant: KEY_DOWN - * {int} - */ - KEY_DOWN: 40, + * Constant: KEY_DOWN + * {int} + */ + KEY_DOWN: 40, /** - * Constant: KEY_DELETE - * {int} - */ - KEY_DELETE: 46, + * Constant: KEY_DELETE + * {int} + */ + KEY_DELETE: 46, /** @@ -349,40 +349,40 @@ OpenLayers.Events.prototype = { ], /** - * Property: listeners - * {Object} Hashtable of Array(Function): events listener functions - */ - listeners: null, + * Property: listeners + * {Object} Hashtable of Array(Function): events listener functions + */ + listeners: null, /** - * Property: object - * {Object} the code object issuing application events - */ - object: null, + * Property: object + * {Object} the code object issuing application events + */ + object: null, /** - * Property: element - * {DOMElement} the DOM element receiving browser events - */ - element: null, + * Property: element + * {DOMElement} the DOM element receiving browser events + */ + element: null, /** - * Property: eventTypes - * {Array} list of support application events - */ - eventTypes: null, + * Property: eventTypes + * {Array} list of support application events + */ + eventTypes: null, /** - * Property: eventHandler - * {Function} bound event handler attached to elements - */ - eventHandler: null, + * Property: eventHandler + * {Function} bound event handler attached to elements + */ + eventHandler: null, /** - * APIProperty: fallThrough - * {Boolean} - */ - fallThrough: null, + * APIProperty: fallThrough + * {Boolean} + */ + fallThrough: null, /** * Constructor: OpenLayers.Events