Изменения в связи с правками в сдк для ввода иероглифов.
fixed Bug 32701, fixed Bug 32696.
This commit is contained in:
parent
27f8f62c9c
commit
ff3143e955
|
@ -232,6 +232,7 @@ define([
|
|||
},
|
||||
|
||||
onBeforeShowMenu: function(e) {
|
||||
Common.NotificationCenter.trigger('menu:show');
|
||||
this.trigger('show:before', this, e);
|
||||
if (this.options.hint) {
|
||||
var tip = this.cmpEl.data('bs.tooltip');
|
||||
|
@ -273,6 +274,7 @@ define([
|
|||
onAfterHideMenu: function(e) {
|
||||
this.cmpEl.find('.dropdown-toggle').blur();
|
||||
this.trigger('hide:after', this, e);
|
||||
Common.NotificationCenter.trigger('menu:hide');
|
||||
},
|
||||
|
||||
onAfterKeydownMenu: function(e) {
|
||||
|
|
|
@ -410,6 +410,8 @@ define([
|
|||
},
|
||||
|
||||
onBeforeShowMenu: function(e) {
|
||||
Common.NotificationCenter.trigger('menu:show');
|
||||
|
||||
if (this.mustLayout) {
|
||||
delete this.mustLayout;
|
||||
this.doLayout.call(this);
|
||||
|
@ -439,6 +441,7 @@ define([
|
|||
|
||||
onAfterHideMenu: function(e) {
|
||||
this.trigger('hide:after', this, e);
|
||||
Common.NotificationCenter.trigger('menu:hide');
|
||||
},
|
||||
|
||||
onAfterKeydownMenu: function(e) {
|
||||
|
|
|
@ -172,7 +172,8 @@ define([
|
|||
/*
|
||||
* TODO: Workaround bug #25004. Clipboard feature processing in sdk.
|
||||
*/
|
||||
if (!(Common.Utils.isSafari && Common.Utils.isMac) && !/area_id/.test(e.target.id)) {
|
||||
if (!(Common.Utils.isSafari && Common.Utils.isMac) && !/area_id/.test(e.target.id) &&
|
||||
$(e.target).parent().find(e.relatedTarget).length<1 /* When focus in combobox goes from input to it's menu button or menu items */) {
|
||||
me.api.asc_enableKeyEvents(true);
|
||||
if (/msg-reply/.test(e.target.className))
|
||||
me.dontCloseDummyComment = false;
|
||||
|
@ -214,6 +215,15 @@ define([
|
|||
me.onEditComplete();
|
||||
}
|
||||
},
|
||||
'menu:show': function(e){
|
||||
me.api.asc_enableKeyEvents(false);
|
||||
},
|
||||
'menu:hide': function(e){
|
||||
if (!me.isModalShowed) {
|
||||
me.api.asc_enableKeyEvents(true);
|
||||
me.onEditComplete();
|
||||
}
|
||||
},
|
||||
'edit:complete': _.bind(me.onEditComplete, me)
|
||||
});
|
||||
|
||||
|
|
|
@ -154,7 +154,8 @@ define([
|
|||
/*
|
||||
* TODO: Workaround bug #25004. Clipboard feature processing in sdk.
|
||||
*/
|
||||
if (!(Common.Utils.isSafari && Common.Utils.isMac) && !/area_id/.test(e.target.id)) {
|
||||
if (!(Common.Utils.isSafari && Common.Utils.isMac) && !/area_id/.test(e.target.id) &&
|
||||
$(e.target).parent().find(e.relatedTarget).length<1 /* When focus in combobox goes from input to it's menu button or menu items */) {
|
||||
me.api.asc_enableKeyEvents(true);
|
||||
if (/msg-reply/.test(e.target.className))
|
||||
me.dontCloseDummyComment = false;
|
||||
|
@ -196,6 +197,15 @@ define([
|
|||
me.onEditComplete();
|
||||
}
|
||||
},
|
||||
'menu:show': function(e){
|
||||
me.api.asc_enableKeyEvents(false);
|
||||
},
|
||||
'menu:hide': function(e){
|
||||
if (!me.isModalShowed) {
|
||||
me.api.asc_enableKeyEvents(true);
|
||||
me.onEditComplete();
|
||||
}
|
||||
},
|
||||
'edit:complete': _.bind(me.onEditComplete, me)
|
||||
});
|
||||
|
||||
|
|
|
@ -172,7 +172,8 @@ define([
|
|||
|
||||
$(document.body).on('blur', 'input, textarea', function(e) {
|
||||
if (this.isAppDisabled === true) return;
|
||||
if (!me.isModalShowed && !(me.loadMask && me.loadMask.isVisible()) && !/area_id/.test(e.target.id)) {
|
||||
if (!me.isModalShowed && !(me.loadMask && me.loadMask.isVisible()) && !/area_id/.test(e.target.id) &&
|
||||
$(e.target).parent().find(e.relatedTarget).length<1 /* When focus in combobox goes from input to it's menu button or menu items */) {
|
||||
me.api.asc_enableKeyEvents(true);
|
||||
if (/msg-reply/.test(e.target.className))
|
||||
me.dontCloseDummyComment = false;
|
||||
|
@ -212,6 +213,15 @@ define([
|
|||
me.onEditComplete();
|
||||
}
|
||||
},
|
||||
'menu:show': function(e){
|
||||
me.api.asc_enableKeyEvents(false);
|
||||
},
|
||||
'menu:hide': function(e){
|
||||
if (!me.isModalShowed) {
|
||||
me.api.asc_enableKeyEvents(true);
|
||||
me.onEditComplete();
|
||||
}
|
||||
},
|
||||
'edit:complete': _.bind(this.onEditComplete, this),
|
||||
'settings:unitschanged':_.bind(this.unitsChanged, this)
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue