[DE] Отладка панели с плагинами.
This commit is contained in:
parent
f45b7de7be
commit
229d7110c0
|
@ -44,7 +44,8 @@ Common.Views = Common.Views || {};
|
|||
define([
|
||||
'common/main/lib/util/utils',
|
||||
'common/main/lib/component/BaseView',
|
||||
'common/main/lib/component/Layout'
|
||||
'common/main/lib/component/Layout',
|
||||
'common/main/lib/component/Window'
|
||||
], function (template) {
|
||||
'use strict';
|
||||
|
||||
|
@ -54,7 +55,7 @@ define([
|
|||
storePlugins: undefined,
|
||||
template: _.template([
|
||||
'<div id="plugins-box" class="layout-ct vbox">',
|
||||
'<label style="font-weight: bold;"><%= scope.strPlugins %></label>',
|
||||
'<label id="plugins-header"><%= scope.strPlugins %></label>',
|
||||
'<div id="plugins-list" class="">',
|
||||
'</div>',
|
||||
'</div>'
|
||||
|
|
|
@ -1,14 +1,22 @@
|
|||
#plugins-box {
|
||||
display: table;
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
margin: 10px;
|
||||
|
||||
#plugins-header {
|
||||
position: absolute;
|
||||
height: 20px;
|
||||
left: 0;
|
||||
top: 0;
|
||||
font-weight: bold;
|
||||
margin-top: 10px;
|
||||
margin-left: 12px;
|
||||
}
|
||||
|
||||
#plugins-list {
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
padding-top: 10px;
|
||||
padding: 30px 0 10px 10px;
|
||||
|
||||
.item-plugins {
|
||||
width: 40px;
|
||||
|
|
|
@ -174,9 +174,10 @@ define([
|
|||
if (this.mode.canUseHistory)
|
||||
this.leftMenu.setOptionsPanel('history', this.getApplication().getController('Common.Controllers.History').getView('Common.Views.History'));
|
||||
|
||||
if (this.mode.canPlugins)
|
||||
if (this.mode.canPlugins) {
|
||||
this.leftMenu.btnPlugins.show();
|
||||
this.leftMenu.setOptionsPanel('plugins', this.getApplication().getController('Common.Controllers.Plugins').getView('Common.Views.Plugins'));
|
||||
else
|
||||
} else
|
||||
this.leftMenu.btnPlugins.hide();
|
||||
|
||||
Common.util.Shortcuts.resumeEvents();
|
||||
|
@ -442,6 +443,7 @@ define([
|
|||
this.leftMenu.btnComments.setDisabled(true);
|
||||
this.leftMenu.btnChat.setDisabled(true);
|
||||
/** coauthoring end **/
|
||||
this.leftMenu.btnPlugins.setDisabled(true);
|
||||
|
||||
this.leftMenu.getMenu('file').setMode({isDisconnected: true});
|
||||
if ( this.dlgSearch ) {
|
||||
|
@ -458,6 +460,7 @@ define([
|
|||
this.leftMenu.btnComments.setDisabled(disable);
|
||||
this.leftMenu.btnChat.setDisabled(disable);
|
||||
/** coauthoring end **/
|
||||
this.leftMenu.btnPlugins.setDisabled(disable);
|
||||
if (disableFileMenu) this.leftMenu.getMenu('file').SetDisabled(disable);
|
||||
},
|
||||
|
||||
|
|
|
@ -1010,6 +1010,9 @@ define([
|
|||
var translateArt = new Asc.asc_TextArtTranslate();
|
||||
translateArt.asc_setDefaultText(this.txtArt);
|
||||
this.api.asc_setTextArtTranslate(translateArt);
|
||||
|
||||
if (this.appOptions.canPlugins)
|
||||
this.updatePluginsList();
|
||||
}
|
||||
},
|
||||
|
||||
|
@ -1088,8 +1091,6 @@ define([
|
|||
// Message on window close
|
||||
window.onbeforeunload = _.bind(me.onBeforeUnload, me);
|
||||
window.onunload = _.bind(me.onUnload, me);
|
||||
|
||||
me.updatePluginsList();
|
||||
}
|
||||
},
|
||||
|
||||
|
|
|
@ -15,6 +15,6 @@
|
|||
<div id="left-panel-comments" class="" style="display: none;" />
|
||||
<div id="left-panel-chat" class="" style="display: none;" />
|
||||
<!-- /** coauthoring end **/ -->
|
||||
<div id="left-panel-plugins" class="" style="display: none;" />
|
||||
<div id="left-panel-plugins" class="" style="display: none; height: 100%;" />
|
||||
</div>
|
||||
</div>
|
|
@ -151,6 +151,7 @@ define([
|
|||
|
||||
this.btnComments.hide();
|
||||
this.btnChat.hide();
|
||||
this.btnPlugins.hide();
|
||||
|
||||
this.btnComments.on('click', _.bind(this.onBtnMenuClick, this));
|
||||
this.btnChat.on('click', _.bind(this.onBtnMenuClick, this));
|
||||
|
|
Loading…
Reference in a new issue