Fixed adjust scroll

This commit is contained in:
benweet 2014-07-31 00:43:14 +01:00
parent 0a00931efd
commit 7cc1c4e8b7

View File

@ -185,6 +185,7 @@ define([
if(this.cursorY !== coordinates.y) {
this.cursorY = coordinates.y;
eventMgr.onCursorCoordinates(coordinates.x, coordinates.y);
}
if(adjustScroll) {
var adjustTop, adjustBottom;
adjustTop = adjustBottom = inputElt.offsetHeight / 2 * settings.cursorFocusRatio;
@ -201,7 +202,6 @@ define([
}
}
}
}
adjustScroll = false;
}, this);
this.updateCursorCoordinates = function(adjustScrollParam) {