[Common] refactoring

This commit is contained in:
Maxim Kadushkin 2017-09-05 14:53:44 +03:00
parent e4faebd1d0
commit 44e1eb0e8d

View file

@ -242,12 +242,15 @@ define([
menu.render(menuContainer);
menu.cmpEl.attr({tabindex: "-1"});
menu.on('show:after', function(cmp) {
menu.on({
'show:after': function(cmp) {
if (cmp && cmp.menuAlignEl)
cmp.menuAlignEl.toggleClass('over', true);
}).on('hide:after', function(cmp) {
},
'hide:after': function(cmp) {
if (cmp && cmp.menuAlignEl)
cmp.menuAlignEl.toggleClass('over', false);
}
});
}
@ -298,16 +301,22 @@ define([
buttons: isCustomWindow ? undefined : newBtns,
toolcallback: _.bind(this.onToolClose, this)
});
me.pluginDlg.on('render:after', function(obj){
me.pluginDlg.on({
'render:after': function(obj){
obj.getChild('.footer .dlg-btn').on('click', _.bind(me.onDlgBtnClick, me));
me.pluginContainer = me.pluginDlg.$window.find('#id-plugin-container');
}).on('close', function(obj){
},
'close': function(obj){
me.pluginDlg = undefined;
}).on('drag', function(args){
},
'drag': function(args){
me.api.asc_pluginEnableMouseEvents(args[1]=='start');
}).on('resize', function(args){
},
'resize': function(args){
me.api.asc_pluginEnableMouseEvents(args[1]=='start');
}
});
me.pluginDlg.show();
}
}