mirror of
https://github.com/ONLYOFFICE/web-apps.git
synced 2026-07-24 14:22:03 +08:00
[DE] Fix selection for multilevel list
This commit is contained in:
@ -493,7 +493,11 @@ define([
|
||||
switch(this._state.bullets.type) {
|
||||
case 0:
|
||||
this.toolbar.btnMarkers.toggle(true, true);
|
||||
this.toolbar.mnuMarkersPicker.selectByIndex(this._state.bullets.subtype, true);
|
||||
if (this._state.bullets.subtype!==undefined)
|
||||
this.toolbar.mnuMarkersPicker.selectByIndex(this._state.bullets.subtype, true);
|
||||
else
|
||||
this.toolbar.mnuMarkersPicker.deselectAll(true);
|
||||
this.toolbar.mnuMultilevelPicker.deselectAll(true);
|
||||
break;
|
||||
case 1:
|
||||
var idx = 0;
|
||||
@ -521,7 +525,11 @@ define([
|
||||
break;
|
||||
}
|
||||
this.toolbar.btnNumbers.toggle(true, true);
|
||||
this.toolbar.mnuNumbersPicker.selectByIndex(idx, true);
|
||||
if (this._state.bullets.subtype!==undefined)
|
||||
this.toolbar.mnuNumbersPicker.selectByIndex(idx, true);
|
||||
else
|
||||
this.toolbar.mnuNumbersPicker.deselectAll(true);
|
||||
this.toolbar.mnuMultilevelPicker.deselectAll(true);
|
||||
break;
|
||||
case 2:
|
||||
this.toolbar.btnMultilevels.toggle(true, true);
|
||||
|
||||
@ -422,6 +422,9 @@ define([
|
||||
conf: {index: 0},
|
||||
selectByIndex: function (idx) {
|
||||
this.conf.index = idx;
|
||||
},
|
||||
deselectAll: function () {
|
||||
this.conf.index = -1;
|
||||
}
|
||||
};
|
||||
this.mnuNumbersPicker = clone(this.mnuMarkersPicker);
|
||||
|
||||
Reference in New Issue
Block a user