Merge pull request #1823 from ONLYOFFICE/fix/bug-57734

Fix Bug 57734
This commit is contained in:
Julia Radzhabova 2022-06-24 10:08:18 +03:00 committed by GitHub
commit d75c7a45f1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -163,8 +163,31 @@ define([
arr[0].set('name', this.txtBeginning);
arr[0].set('tip', this.txtGotoBeginning);
}
this.getApplication().getCollection('Navigation').reset(arr);
this.onChangeOutlinePosition(this._navigationObject.get_CurrentPosition());
var me = this;
var store = this.getApplication().getCollection('Navigation');
store.reset(arr.splice(0, 50));
this._currentPos = this._navigationObject.get_CurrentPosition();
function addToPanel() {
if (arr.length<1) {
me.panelNavigation.viewNavigationList.scroller && me.panelNavigation.viewNavigationList.scroller.update({alwaysVisibleY: true});
if (me._currentPos>-1 && me._currentPos<store.length)
me.onChangeOutlinePosition(me._currentPos);
me._currentPos = -1;
return;
}
setTimeout(function () {
store.add(arr.splice(0, 100));
if (me._currentPos>-1 && me._currentPos<store.length) {
me.onChangeOutlinePosition(me._currentPos);
me._currentPos = -1;
}
addToPanel();
}, 1);
}
addToPanel();
},
updateChangeNavigation: function(index) {
@ -185,7 +208,10 @@ define([
},
onChangeOutlinePosition: function(index) {
if (index<this.panelNavigation.viewNavigationList.store.length)
this.panelNavigation.viewNavigationList.scrollToRecord(this.panelNavigation.viewNavigationList.selectByIndex(index));
else
this._currentPos = index;
},
onItemContextMenu: function(picker, item, record, e){