[Commits] r2797 - sandbox/gxm/geoext/gxm/lib

commits at geoext.org commits at geoext.org
Mon Aug 8 15:55:27 CEST 2011


Author: marcjansen
Date: 2011-08-08 15:55:27 +0200 (Mon, 08 Aug 2011)
New Revision: 2797

Modified:
   sandbox/gxm/geoext/gxm/lib/GXM.loader.js
Log:
[gxm] removed the deleted classes from the loader

Modified: sandbox/gxm/geoext/gxm/lib/GXM.loader.js
===================================================================
--- sandbox/gxm/geoext/gxm/lib/GXM.loader.js	2011-08-08 13:54:35 UTC (rev 2796)
+++ sandbox/gxm/geoext/gxm/lib/GXM.loader.js	2011-08-08 13:55:27 UTC (rev 2797)
@@ -64,9 +64,7 @@
         var jsfiles = [
             "widgets/MapPanel.js",
             "widgets/Button.js",
-            "widgets/SegmentedButton.js",
             "data/models/Layer.js",
-            "data/LayerReader.js",
             "data/LayerStore.js",
             "widgets/LayerList.js"
         ];
@@ -76,7 +74,10 @@
         var host = getScriptLocation() + "lib/GXM/";    
         
         Ext.each(jsfiles, function(jsfile) {
-            allScriptTags.push( "<script type='text/javascript' src='" + host + jsfile +"'></script>" );
+            allScriptTags.push(
+                "<script type='text/javascript' src='" 
+                + host + jsfile 
+                +"'></script>" );
         });
         
         document.write(allScriptTags.join(""));



More information about the Commits mailing list