[DE] Fix bug 55354
This commit is contained in:
parent
85f994303f
commit
e29e00b74e
|
@ -775,6 +775,7 @@ define([
|
|||
this.api.asc_enableKeyEvents(true);
|
||||
} else if (this.leftMenu.btnThumbnails.isActive()) {
|
||||
this.leftMenu.btnThumbnails.toggle(false);
|
||||
this.leftMenu.panelThumbnails.hide();
|
||||
this.leftMenu.onBtnMenuClick(this.leftMenu.btnThumbnails);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
<div id="left-panel-chat" class="" style="display: none;"></div>
|
||||
<!-- /** coauthoring end **/ -->
|
||||
<div id="left-panel-navigation" class="" style="display: none; height: 100%;"></div>
|
||||
<div id="left-panel-plugins" class="" style="display: none; height: 100%;"></div>
|
||||
<div id="left-panel-thumbnails" class="" style="display: none; height: 100%;"></div>
|
||||
<div id="left-panel-plugins" class="" style="display: none; height: 100%;"></div>
|
||||
</div>
|
||||
</div>
|
|
@ -329,6 +329,10 @@ define([
|
|||
this.panelNavigation['hide']();
|
||||
this.btnNavigation.toggle(false, true);
|
||||
}
|
||||
if (this.panelThumbnails) {
|
||||
this.panelThumbnails['hide']();
|
||||
this.btnThumbnails.toggle(false, true);
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in a new issue