Fix invalid unary operator

pull/1/head
Alex Beregszaszi 9 years ago
parent 6a9e874fea
commit e509ef4454
  1. 2
      src/app.js

@ -289,7 +289,7 @@ var run = function () {
}
function reAdjust () {
if (widthOfList() + getLeftPosi() > + widthOfVisible()) {
if (widthOfList() + getLeftPosi() > widthOfVisible()) {
$scrollerRight.fadeIn('fast');
} else {
$scrollerRight.fadeOut('fast');

Loading…
Cancel
Save