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

View File

@@ -262,8 +262,8 @@ OpenLayers.Handler.Path = OpenLayers.Class(OpenLayers.Handler.Point, {
},
/**
* Method: mousedown
* Handle mouse down. Add a new point to the geometry and
* Method: down
* Handle mousedown and touchstart. Add a new point to the geometry and
* render it. Return determines whether to propagate the event on the map.
*
* Parameters:
@@ -287,8 +287,8 @@ OpenLayers.Handler.Path = OpenLayers.Class(OpenLayers.Handler.Point, {
},
/**
* Method: mousemove
* Handle mouse move. Adjust the geometry and redraw.
* Method: move
* Handle mousemove and touchmove. Adjust the geometry and redraw.
* Return determines whether to propagate the event on the map.
*
* Parameters:
@@ -312,8 +312,8 @@ OpenLayers.Handler.Path = OpenLayers.Class(OpenLayers.Handler.Point, {
},
/**
* Method: mouseup
* Handle mouse up. Send the latest point in the geometry to
* Method: up
* Handle mouseup and touchend. Send the latest point in the geometry to
* the control. Return determines whether to propagate the event on the map.
*
* Parameters:

View File

@@ -475,8 +475,8 @@ OpenLayers.Handler.Point = OpenLayers.Class(OpenLayers.Handler, {
},
/**
* Method: mousedown
* Handle mouse down. Adjust the geometry and redraw.
* Method: down
* Handle mousedown and touchstart. Adjust the geometry and redraw.
* Return determines whether to propagate the event on the map.
*
* Parameters:
@@ -496,8 +496,8 @@ OpenLayers.Handler.Point = OpenLayers.Class(OpenLayers.Handler, {
},
/**
* Method: mousemove
* Handle mouse move. Adjust the geometry and redraw.
* Method: move
* Handle mousemove and touchmove. Adjust the geometry and redraw.
* Return determines whether to propagate the event on the map.
*
* Parameters:
@@ -515,8 +515,8 @@ OpenLayers.Handler.Point = OpenLayers.Class(OpenLayers.Handler, {
},
/**
* Method: mouseup
* Handle mouse up. Send the latest point in the geometry to the control.
* Method: up
* Handle mouseup and touchend. Send the latest point in the geometry to the control.
* Return determines whether to propagate the event on the map.
*
* Parameters: