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

svn_mapbender at osgeo.org svn_mapbender at osgeo.org
Mon Jul 26 06:26:03 EDT 2010


Author: kmq
Date: 2010-07-26 10:26:03 +0000 (Mon, 26 Jul 2010)
New Revision: 6638

Modified:
   trunk/mapbender/lib/mb.ui.displayFeatures.js
Log:
moved the jquery widget factory '_create' to '_init'

Modified: trunk/mapbender/lib/mb.ui.displayFeatures.js
===================================================================
--- trunk/mapbender/lib/mb.ui.displayFeatures.js	2010-07-26 10:07:39 UTC (rev 6637)
+++ trunk/mapbender/lib/mb.ui.displayFeatures.js	2010-07-26 10:26:03 UTC (rev 6638)
@@ -35,7 +35,7 @@
 	_feeds: {},
 	_popup : null,
 	
-	_create: function(){
+	_init: function(){
 		var that = this, o = this.options;
 		this._popup = $('<div></div>').dialog({autoOpen : false, height: 500, width: 500});
 		this.element.click( function(e){
@@ -144,6 +144,8 @@
 			that._load(o.url);
 		}
 	},
+	_create: function(){
+	},
 
 	_load : function(url){
 		var that = this, o = this.options;



More information about the Mapbender_commits mailing list