forked from Techsystech/web
[IMP] web_responsive: Don't show menu if waiting for an action to end
parent
9701e159d1
commit
dafd3c75cb
|
@ -351,6 +351,17 @@ odoo.define('web_responsive', function (require) {
|
|||
return this._super.apply(this, arguments);
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
* Don't display the menu if are waiting for an action to end
|
||||
*
|
||||
* @override
|
||||
*/
|
||||
_onMouseOverMenu: function () {
|
||||
if ($('.oe_wait').length === 0) {
|
||||
this._super.apply(this, arguments);
|
||||
}
|
||||
},
|
||||
});
|
||||
|
||||
RelationalFields.FieldStatus.include({
|
||||
|
|
Loading…
Reference in New Issue