Documentation fixes from jorix (thanks). (closes #3234)

git-svn-id: http://svn.openlayers.org/trunk/openlayers@11850 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
Tim Schaub
2011-03-31 22:02:46 +00:00
parent 3ef0b05949
commit 970ff2741f
2 changed files with 12 additions and 12 deletions
+6 -6
View File
@@ -262,8 +262,8 @@ OpenLayers.Handler.Path = OpenLayers.Class(OpenLayers.Handler.Point, {
}, },
/** /**
* Method: mousedown * Method: down
* Handle mouse down. Add a new point to the geometry and * Handle mousedown and touchstart. Add a new point to the geometry and
* render it. Return determines whether to propagate the event on the map. * render it. Return determines whether to propagate the event on the map.
* *
* Parameters: * Parameters:
@@ -287,8 +287,8 @@ OpenLayers.Handler.Path = OpenLayers.Class(OpenLayers.Handler.Point, {
}, },
/** /**
* Method: mousemove * Method: move
* Handle mouse move. Adjust the geometry and redraw. * Handle mousemove and touchmove. Adjust the geometry and redraw.
* Return determines whether to propagate the event on the map. * Return determines whether to propagate the event on the map.
* *
* Parameters: * Parameters:
@@ -312,8 +312,8 @@ OpenLayers.Handler.Path = OpenLayers.Class(OpenLayers.Handler.Point, {
}, },
/** /**
* Method: mouseup * Method: up
* Handle mouse up. Send the latest point in the geometry to * Handle mouseup and touchend. Send the latest point in the geometry to
* the control. Return determines whether to propagate the event on the map. * the control. Return determines whether to propagate the event on the map.
* *
* Parameters: * Parameters:
+6 -6
View File
@@ -475,8 +475,8 @@ OpenLayers.Handler.Point = OpenLayers.Class(OpenLayers.Handler, {
}, },
/** /**
* Method: mousedown * Method: down
* Handle mouse down. Adjust the geometry and redraw. * Handle mousedown and touchstart. Adjust the geometry and redraw.
* Return determines whether to propagate the event on the map. * Return determines whether to propagate the event on the map.
* *
* Parameters: * Parameters:
@@ -496,8 +496,8 @@ OpenLayers.Handler.Point = OpenLayers.Class(OpenLayers.Handler, {
}, },
/** /**
* Method: mousemove * Method: move
* Handle mouse move. Adjust the geometry and redraw. * Handle mousemove and touchmove. Adjust the geometry and redraw.
* Return determines whether to propagate the event on the map. * Return determines whether to propagate the event on the map.
* *
* Parameters: * Parameters:
@@ -515,8 +515,8 @@ OpenLayers.Handler.Point = OpenLayers.Class(OpenLayers.Handler, {
}, },
/** /**
* Method: mouseup * Method: up
* Handle mouse up. Send the latest point in the geometry to the control. * Handle mouseup and touchend. Send the latest point in the geometry to the control.
* Return determines whether to propagate the event on the map. * Return determines whether to propagate the event on the map.
* *
* Parameters: * Parameters: