missing semi-colons
authorMichael J. Rubinsky <mrubinsk@horde.org>
Mon, 28 Dec 2009 20:01:19 +0000 (15:01 -0500)
committerMichael J. Rubinsky <mrubinsk@horde.org>
Mon, 28 Dec 2009 20:01:19 +0000 (15:01 -0500)
kronolith/js/kronolith.js

index 6db25c5..afd2527 100644 (file)
@@ -665,7 +665,7 @@ KronolithCore = {
         var table = $('kronolithYearTemplate').cloneNode(true),
             tbody = table.down('tbody');
         table.removeAttribute('id');
-        tbody.writeAttribute('id', 'kronolithYearTable' + month)
+        tbody.writeAttribute('id', 'kronolithYearTable' + month);
 
         // Set month name.
         table.down('span')
@@ -1294,7 +1294,7 @@ KronolithCore = {
                     opts.snap = function(x, y) {
                         y = Math.max(0, step * (Math.min(maxTop, y) / step | 0));
                         return [0, y];
-                    }
+                    };
                     new Drag(event.value.nodeId + 'top', opts);
                 }
 
@@ -1302,7 +1302,7 @@ KronolithCore = {
                     opts.snap = function(x, y) {
                         y = Math.min(maxBottom + dragBottomHeight + KronolithCore[storage].spacing, step * ((Math.max(minBottom, y) + dragBottomHeight + KronolithCore[storage].spacing) / step | 0)) - dragBottomHeight - KronolithCore[storage].spacing;
                         return [0, y];
-                    }
+                    };
                     new Drag(event.value.nodeId + 'bottom', opts);
                 }
 
@@ -3767,7 +3767,7 @@ KronolithCore = {
         if (!this.mapInitialized) {
             this.initializeMap();
         }
-        var dialog = $('kronolithEventForm')
+        var dialog = $('kronolithEventForm');
         dialog.select('.kronolithTabsOption').invoke('hide');
         dialog.select('.tabset li').invoke('removeClassName', 'activeTab');
         $('kronolithEventTabMap').show();