Update to improve editor performance by debounce checkEditorScrollbar event

This commit is contained in:
Wu Cheng-Han 2017-01-02 11:06:02 +08:00
parent 0db4358adb
commit db0ea715c6

View file

@ -1223,7 +1223,11 @@ function checkSyncToggle() {
}
}
function checkEditorScrollbar() {
var checkEditorScrollbar = _.debounce(function () {
editor.operation(checkEditorScrollbarInner);
}, 50);
function checkEditorScrollbarInner() {
// workaround simple scroll bar knob
// will get wrong position when editor height changed
var scrollInfo = editor.getScrollInfo();