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