From eba3d3878c73f24e39da1b8d093cda048055cd9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Junod?= Date: Wed, 27 Jul 2011 11:36:33 +0000 Subject: [PATCH] fixed APIdocs. Non-functional change git-svn-id: http://svn.openlayers.org/trunk/openlayers@12193 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- lib/OpenLayers/Handler/Click.js | 3 +++ lib/OpenLayers/Handler/Pinch.js | 3 +++ 2 files changed, 6 insertions(+) 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];