[PE] Fix Bug 37256
This commit is contained in:
parent
9ba9ed2ffd
commit
fe68423a70
|
@ -387,12 +387,12 @@ define([
|
||||||
},
|
},
|
||||||
|
|
||||||
onApiCountPages: function(count) {
|
onApiCountPages: function(count) {
|
||||||
if (this._state.no_slides !== (count<=0) && this.mode.isEdit) {
|
if (this._state.no_slides !== (count<=0)) {
|
||||||
this._state.no_slides = (count<=0);
|
this._state.no_slides = (count<=0);
|
||||||
/** coauthoring begin **/
|
/** coauthoring begin **/
|
||||||
this.leftMenu.btnComments.setDisabled(this._state.no_slides);
|
this.leftMenu.btnComments && this.leftMenu.btnComments.setDisabled(this._state.no_slides);
|
||||||
/** coauthoring end **/
|
/** coauthoring end **/
|
||||||
this.leftMenu.btnSearch.setDisabled(this._state.no_slides);
|
this.leftMenu.btnSearch && this.leftMenu.btnSearch.setDisabled(this._state.no_slides);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue