From e0e5dd544b57059e93d78f0dcca020b30fcb9145 Mon Sep 17 00:00:00 2001 From: euzuro Date: Tue, 11 Jul 2006 14:55:50 +0000 Subject: [PATCH] update comment, adding 'minor' param git-svn-id: http://svn.openlayers.org/trunk/openlayers@934 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- lib/OpenLayers/Layer.js | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/lib/OpenLayers/Layer.js b/lib/OpenLayers/Layer.js index 4354d41c63..fa5f4c4122 100644 --- a/lib/OpenLayers/Layer.js +++ b/lib/OpenLayers/Layer.js @@ -120,11 +120,12 @@ OpenLayers.Layer.prototype = { /** - * @params {OpenLayers.Bounds} bound - * @params {Boolean} zoomChanged tells when zoom has changed, as layers - * have to do some init work in that case. - */ - moveTo: function (bound, zoomChanged) { + * @param {OpenLayers.Bounds} bound + * @param {Boolean} zoomChanged tells when zoom has changed, as layers + * have to do some init work in that case. + * @param {Boolean} minor + */ + moveTo:function(bounds, zoomChanged, minor) { //this function can be implemented by subclasses. },