[Commits] r1611 - sandbox/ahocevar/playground/ux/Printing/ux/data

commits at geoext.org commits at geoext.org
Thu Dec 24 23:20:44 CET 2009


Author: ahocevar
Date: 2009-12-24 23:20:44 +0100 (Thu, 24 Dec 2009)
New Revision: 1611

Modified:
   sandbox/ahocevar/playground/ux/Printing/ux/data/PrintPage.js
   sandbox/ahocevar/playground/ux/Printing/ux/data/PrintProvider.js
Log:
added missing semicolons

Modified: sandbox/ahocevar/playground/ux/Printing/ux/data/PrintPage.js
===================================================================
--- sandbox/ahocevar/playground/ux/Printing/ux/data/PrintPage.js	2009-12-24 22:09:41 UTC (rev 1610)
+++ sandbox/ahocevar/playground/ux/Printing/ux/data/PrintPage.js	2009-12-24 22:20:44 UTC (rev 1611)
@@ -185,9 +185,8 @@
         this.printProvider.scales.each(function(rec) {
             scale = rec;
             return !extent.containsBounds(
-                this.calculatePageBounds(scale, units)
-            );
-        }, this)
+                this.calculatePageBounds(scale, units));
+        }, this);
         this.resumeEvents();
         this.setScale(scale, units);
     },
@@ -253,7 +252,7 @@
         if(updateHandle !== false) {
             this.updateHandle();
         }
-        this.fireEvent("change", this)
+        this.fireEvent("change", this);
     },
     
     /** api: method[updateHandle]

Modified: sandbox/ahocevar/playground/ux/Printing/ux/data/PrintProvider.js
===================================================================
--- sandbox/ahocevar/playground/ux/Printing/ux/data/PrintProvider.js	2009-12-24 22:09:41 UTC (rev 1610)
+++ sandbox/ahocevar/playground/ux/Printing/ux/data/PrintProvider.js	2009-12-24 22:20:44 UTC (rev 1611)
@@ -261,7 +261,7 @@
      */
     setDpi: function(dpi) {
         this.dpi = dpi;
-        this.fireEvent("dpichange", this, dpi)
+        this.fireEvent("dpichange", this, dpi);
     },
 
     /** api: method[print]
@@ -515,8 +515,7 @@
                         if(style.externalGraphic) {
                             encStyles[styleName] = Ext.applyIf({
                                 externalGraphic: this.getAbsoluteUrl(
-                                    style.externalGraphic)
-                            }, style);
+                                    style.externalGraphic)}, style);
                         } else {
                             encStyles[styleName] = style;
                         }
@@ -554,7 +553,7 @@
                 enc[0].classes[0] = {
                     name: "",
                     icons: icons
-                }
+                };
                 return enc;
             },
             "gx_urllegend": function(legend) {



More information about the Commits mailing list