it was reported on the mailing list that the hover handler doc isn't sufficient, fix that, thanks for reporting this Mika, no functional change

git-svn-id: http://svn.openlayers.org/trunk/openlayers@8484 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
Éric Lemoine
2008-12-10 20:04:29 +00:00
parent 304b2cf3ea
commit 67f51ad972

View File

@@ -34,21 +34,21 @@ OpenLayers.Handler.Hover = OpenLayers.Class(OpenLayers.Handler, {
/**
* APIProperty: stopMove
* {Boolean} Stop other listeners from being notified on mousemoves.
* {Boolean} - Stop other listeners from being notified on mousemoves.
* Default is false.
*/
stopMove: false,
/**
* Property: px
* {<OpenLayers.Pixel>} The location of the last mousemove, expressed
* {<OpenLayers.Pixel>} - The location of the last mousemove, expressed
* in pixels.
*/
px: null,
/**
* Property: timerId
* {Number} The id of the timer.
* {Number} - The id of the timer.
*/
timerId: null,
@@ -60,10 +60,11 @@ OpenLayers.Handler.Hover = OpenLayers.Class(OpenLayers.Handler, {
* control - {<OpenLayers.Control>} The control that initialized this
* handler. The control is assumed to have a valid map property; that
* map is used in the handler's own setMap method.
* callbacks - {Object} An object whose properties correspond to abstracted
* events or sequences of browser events. The values for these
* properties are functions defined by the control that get called by
* the handler.
* callbacks - {Object} An object with keys corresponding to callbacks
* that will be called by the handler. The callbacks should
* expect to receive a single argument, the event. Callbacks for
* 'move', the mouse is moving, and 'pause', the mouse is pausing,
* are supported.
* options - {Object} An optional object whose properties will be set on
* the handler.
*/