Commit e509ef44 authored by Alex Beregszaszi's avatar Alex Beregszaszi

Fix invalid unary operator

parent 6a9e874f
...@@ -289,7 +289,7 @@ var run = function () { ...@@ -289,7 +289,7 @@ var run = function () {
} }
function reAdjust () { function reAdjust () {
if (widthOfList() + getLeftPosi() > + widthOfVisible()) { if (widthOfList() + getLeftPosi() > widthOfVisible()) {
$scrollerRight.fadeIn('fast'); $scrollerRight.fadeIn('fast');
} else { } else {
$scrollerRight.fadeOut('fast'); $scrollerRight.fadeOut('fast');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment