diff --git a/lib/OpenLayers/Handler/Click.js b/lib/OpenLayers/Handler/Click.js index 3fb0f3748f..b2a1a043d5 100644 --- a/lib/OpenLayers/Handler/Click.js +++ b/lib/OpenLayers/Handler/Click.js @@ -184,6 +184,9 @@ OpenLayers.Handler.Click = OpenLayers.Class(OpenLayers.Handler, { * Method: touchend * Correctly set event xy property, and add lastTouches to have * touches property from last touchstart or touchmove + * + * Returns: + * {Boolean} Continue propagating this event. */ touchend: function(evt) { // touchstart may not have been allowed to propagate diff --git a/lib/OpenLayers/Handler/Pinch.js b/lib/OpenLayers/Handler/Pinch.js index cac1dc376e..2138a458ad 100644 --- a/lib/OpenLayers/Handler/Pinch.js +++ b/lib/OpenLayers/Handler/Pinch.js @@ -194,6 +194,9 @@ OpenLayers.Handler.Pinch = OpenLayers.Class(OpenLayers.Handler, { * * Parameters: * touches - {Array(Object)} + * + * Returns: + * {Number} The distance in pixels. */ getDistance: function(touches) { var t0 = touches[0];