diff --git a/mobile/chrome/content/browser.js b/mobile/chrome/content/browser.js index cd1a30f50ab6..d519c5ec30f8 100644 --- a/mobile/chrome/content/browser.js +++ b/mobile/chrome/content/browser.js @@ -1305,7 +1305,7 @@ Browser.MainDragger.prototype = { if (leftSidebar.left > rightSidebar.left) x = Math.round(Math.max(0, rightW * rightVis)); else - x = Math.round(Math.max(0, leftW * leftVis)); + x = Math.round(Math.max(0, leftW * leftVis)) * -1.0; } this._verticalScrollbar.style.MozTransform = "translate(" + x + "px," + y + "px)";