[Commits] r2426 - sandbox/pgiraud/playground/print-multipage/geoext.ux/ux/MultiPagePrint/lib/GeoExt.ux

commits at geoext.org commits at geoext.org
Mon Oct 4 09:48:38 CEST 2010


Author: pgiraud
Date: 2010-10-04 09:48:38 +0200 (Mon, 04 Oct 2010)
New Revision: 2426

Modified:
   sandbox/pgiraud/playground/print-multipage/geoext.ux/ux/MultiPagePrint/lib/GeoExt.ux/MultiPagePrint.js
Log:
code cleanup, thanks JsLint

Modified: sandbox/pgiraud/playground/print-multipage/geoext.ux/ux/MultiPagePrint/lib/GeoExt.ux/MultiPagePrint.js
===================================================================
--- sandbox/pgiraud/playground/print-multipage/geoext.ux/ux/MultiPagePrint/lib/GeoExt.ux/MultiPagePrint.js	2010-10-01 14:12:16 UTC (rev 2425)
+++ sandbox/pgiraud/playground/print-multipage/geoext.ux/ux/MultiPagePrint/lib/GeoExt.ux/MultiPagePrint.js	2010-10-04 07:48:38 UTC (rev 2426)
@@ -89,11 +89,6 @@
      *  the form fields inside the tanpanel items. Defaults to 150.
      */
     fieldsWidth: 150,
-
-    /** api: property[printOptions]
-     *  ``Object`` Optional options for the printProvider's print command.
-     */
-    printOptions: null,
     
     /** api: config[hideUnique]
      *  ``Boolean`` If set to false, combo boxes for stores with just one value
@@ -344,7 +339,7 @@
             enableKeyEvents: true,
             width: this.fieldsWidth,
             validator: function(v) {
-                return !isNaN(v)
+                return !isNaN(v);
             },
             plugins: new GeoExt.plugins.PrintPageField({
                 printPage: page
@@ -384,7 +379,7 @@
             this.mapPanel.map.events.un({
                 "moveend": this.onMoveend,
                 scope: this
-            })
+            });
         }
         GeoExt.ux.MultiPagePrint.superclass.beforeDestroy.apply(this, arguments);
     },



More information about the Commits mailing list