[Mapbender-commits] r6398 - trunk/mapbender/lib

svn_mapbender at osgeo.org svn_mapbender at osgeo.org
Tue Jun 22 10:46:01 EDT 2010


Author: christoph
Date: 2010-06-22 14:46:01 +0000 (Tue, 22 Jun 2010)
New Revision: 6398

Modified:
   trunk/mapbender/lib/wizard.js
Log:


Modified: trunk/mapbender/lib/wizard.js
===================================================================
--- trunk/mapbender/lib/wizard.js	2010-06-22 14:42:46 UTC (rev 6397)
+++ trunk/mapbender/lib/wizard.js	2010-06-22 14:46:01 UTC (rev 6398)
@@ -54,12 +54,14 @@
 			var abort = false;
 			$target.parents().each(function () {
 				if (abort || found) {
+					new Mapbender.Warning("not this target's wizard, or not found, aborting");
 					return;
 				}
 				var $currentElement = $(this);
 				// not this target's wizard
 				if ($(this).data("isWizard") && this !== wizardInstance) {
 					abort = true;
+					new Mapbender.Warning("not this target's wizard, aborting");
 					return;
 				}				
 				// this target's wizard
@@ -69,6 +71,7 @@
 				}				
 			});
 			if (abort || !found) {
+				new Mapbender.Warning("not this target's wizard, or not found, aborting");
 				return;
 			}
 



More information about the Mapbender_commits mailing list