From ddd98695dcce0b297b5a5bdaf42f86db9be16692 Mon Sep 17 00:00:00 2001 From: "Michael J. Rubinsky" Date: Mon, 28 Dec 2009 15:01:19 -0500 Subject: [PATCH] missing semi-colons --- kronolith/js/kronolith.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/kronolith/js/kronolith.js b/kronolith/js/kronolith.js index 6db25c557..afd25279b 100644 --- a/kronolith/js/kronolith.js +++ b/kronolith/js/kronolith.js @@ -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(); -- 2.11.0