Fix indent

This commit is contained in:
Piro / YUKI Hiroshi 2015-03-18 02:40:08 +09:00
parent d821755f2f
commit d0fb0280e8

View File

@ -2957,11 +2957,11 @@ TreeStyleTabBrowser.prototype = inherit(TreeStyleTabWindow.prototype, {
if (this.isSmoothScrolling())
return;
let x = {}, y = {};
let scrollBoxObject = this.scrollBoxObject;
scrollBoxObject.getPosition(x, y);
if (x.value != lastX || y.value != lastY)
scrollBoxObject.scrollTo(lastX, lastY);
let x = {}, y = {};
let scrollBoxObject = this.scrollBoxObject;
scrollBoxObject.getPosition(x, y);
if (x.value != lastX || y.value != lastY)
scrollBoxObject.scrollTo(lastX, lastY);
},
clearLastScrollPosition : function TSTBrowser_clearLastScrollPosition()