Add missing semicolon at the end of sequence display module javascript

This commit is contained in:
Carlos Andrés Rocha
2013-01-18 17:00:51 -05:00
parent 44e7d6b267
commit 84efafc896

View File

@@ -1,6 +1,3 @@
var SequenceNav = function($element) {
var _this = this;
var $element = $element;
@@ -44,7 +41,7 @@ var SequenceNav = function($element) {
var leftPercent = clamp(-left / padding, 0, 1);
$leftShadow.css('opacity', leftPercent);
var rightPercent = clamp((maxScroll + left) / padding, 0, 1);
$rightShadow.css('opacity', rightPercent);
};
@@ -95,5 +92,5 @@ var SequenceNav = function($element) {
$(window).bind('resize', updateWidths);
setTimeout(function() {
checkPosition();
}, 200);
}
}, 200);
};