replacing tabs with spaces
git-svn-id: http://svn.openlayers.org/trunk/openlayers@3684 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
+63
-63
@@ -12,65 +12,65 @@
|
|||||||
OpenLayers.Event = {
|
OpenLayers.Event = {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Property: observers
|
* Property: observers
|
||||||
* {Object} A hashtable cache of the event observers. Keyed by
|
* {Object} A hashtable cache of the event observers. Keyed by
|
||||||
* element._eventCacheID
|
* element._eventCacheID
|
||||||
*/
|
*/
|
||||||
observers: false,
|
observers: false,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constant: KEY_BACKSPACE
|
* Constant: KEY_BACKSPACE
|
||||||
* {int}
|
* {int}
|
||||||
*/
|
*/
|
||||||
KEY_BACKSPACE: 8,
|
KEY_BACKSPACE: 8,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constant: KEY_TAB
|
* Constant: KEY_TAB
|
||||||
* {int}
|
* {int}
|
||||||
*/
|
*/
|
||||||
KEY_TAB: 9,
|
KEY_TAB: 9,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constant: KEY_RETURN
|
* Constant: KEY_RETURN
|
||||||
* {int}
|
* {int}
|
||||||
*/
|
*/
|
||||||
KEY_RETURN: 13,
|
KEY_RETURN: 13,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constant: KEY_ESC
|
* Constant: KEY_ESC
|
||||||
* {int}
|
* {int}
|
||||||
*/
|
*/
|
||||||
KEY_ESC: 27,
|
KEY_ESC: 27,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constant: KEY_LEFT
|
* Constant: KEY_LEFT
|
||||||
* {int}
|
* {int}
|
||||||
*/
|
*/
|
||||||
KEY_LEFT: 37,
|
KEY_LEFT: 37,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constant: KEY_UP
|
* Constant: KEY_UP
|
||||||
* {int}
|
* {int}
|
||||||
*/
|
*/
|
||||||
KEY_UP: 38,
|
KEY_UP: 38,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constant: KEY_RIGHT
|
* Constant: KEY_RIGHT
|
||||||
* {int}
|
* {int}
|
||||||
*/
|
*/
|
||||||
KEY_RIGHT: 39,
|
KEY_RIGHT: 39,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constant: KEY_DOWN
|
* Constant: KEY_DOWN
|
||||||
* {int}
|
* {int}
|
||||||
*/
|
*/
|
||||||
KEY_DOWN: 40,
|
KEY_DOWN: 40,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constant: KEY_DELETE
|
* Constant: KEY_DELETE
|
||||||
* {int}
|
* {int}
|
||||||
*/
|
*/
|
||||||
KEY_DELETE: 46,
|
KEY_DELETE: 46,
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -349,40 +349,40 @@ OpenLayers.Events.prototype = {
|
|||||||
],
|
],
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Property: listeners
|
* Property: listeners
|
||||||
* {Object} Hashtable of Array(Function): events listener functions
|
* {Object} Hashtable of Array(Function): events listener functions
|
||||||
*/
|
*/
|
||||||
listeners: null,
|
listeners: null,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Property: object
|
* Property: object
|
||||||
* {Object} the code object issuing application events
|
* {Object} the code object issuing application events
|
||||||
*/
|
*/
|
||||||
object: null,
|
object: null,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Property: element
|
* Property: element
|
||||||
* {DOMElement} the DOM element receiving browser events
|
* {DOMElement} the DOM element receiving browser events
|
||||||
*/
|
*/
|
||||||
element: null,
|
element: null,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Property: eventTypes
|
* Property: eventTypes
|
||||||
* {Array} list of support application events
|
* {Array} list of support application events
|
||||||
*/
|
*/
|
||||||
eventTypes: null,
|
eventTypes: null,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Property: eventHandler
|
* Property: eventHandler
|
||||||
* {Function} bound event handler attached to elements
|
* {Function} bound event handler attached to elements
|
||||||
*/
|
*/
|
||||||
eventHandler: null,
|
eventHandler: null,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* APIProperty: fallThrough
|
* APIProperty: fallThrough
|
||||||
* {Boolean}
|
* {Boolean}
|
||||||
*/
|
*/
|
||||||
fallThrough: null,
|
fallThrough: null,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructor: OpenLayers.Events
|
* Constructor: OpenLayers.Events
|
||||||
|
|||||||
Reference in New Issue
Block a user