[Commits] r2296 - extensions/geoext.ux/ux/SimplePrint/lib/GeoExt.ux
commits at geoext.org
commits at geoext.org
Wed Sep 1 09:15:51 CEST 2010
Author: fredj
Date: 2010-09-01 09:15:51 +0200 (Wed, 01 Sep 2010)
New Revision: 2296
Modified:
extensions/geoext.ux/ux/SimplePrint/lib/GeoExt.ux/SimplePrint.js
Log:
Add missing semicolon. Non-functional change.
Modified: extensions/geoext.ux/ux/SimplePrint/lib/GeoExt.ux/SimplePrint.js
===================================================================
--- extensions/geoext.ux/ux/SimplePrint/lib/GeoExt.ux/SimplePrint.js 2010-08-30 10:05:26 UTC (rev 2295)
+++ extensions/geoext.ux/ux/SimplePrint/lib/GeoExt.ux/SimplePrint.js 2010-09-01 07:15:51 UTC (rev 2296)
@@ -6,7 +6,7 @@
* of the license.
*/
-Ext.namespace("GeoExt.ux")
+Ext.namespace("GeoExt.ux");
/*
* @include GeoExt/data/PrintPage.js
@@ -223,7 +223,7 @@
this.mapPanel.map.events.on({
"moveend": this.onMoveend,
scope: this
- })
+ });
}
},
@@ -244,7 +244,7 @@
this.mapPanel.map.events.un({
"moveend": this.onMoveend,
scope: this
- })
+ });
}
GeoExt.ux.SimplePrint.superclass.beforeDestroy.apply(this, arguments);
},
More information about the Commits
mailing list