Fix missed ';'

In JavaScript, it's the convension that ';' is placed
at the end of statement
This commit is contained in:
Hyunje Alex Jun 2013-02-15 23:58:57 +09:00
parent 627b6a6b81
commit 1cdbc9509f

View File

@ -90,7 +90,7 @@
scrollbar_x_left = new_left;
}
$scrollbar_x.css({left: scrollbar_x_left + $this.scrollLeft()});
}
};
var moveBarY = function(current_top, delta_y) {
var new_top = current_top + delta_y,