forked from Techsystech/web
[IMP] web_advanced_search: Don't block modal filter menu
parent
939c300480
commit
1a31f3b603
|
@ -96,7 +96,8 @@ odoo.define("web_advanced_search", function (require) {
|
||||||
start: function () {
|
start: function () {
|
||||||
this._super.apply(this, arguments);
|
this._super.apply(this, arguments);
|
||||||
this.$el.on('hide.bs.dropdown', function() {
|
this.$el.on('hide.bs.dropdown', function() {
|
||||||
return !($('.o_technical_modal.show').length || $('body.oe_wait').length);
|
var $modal = $('.o_technical_modal.show');
|
||||||
|
return !(($modal.length && !$modal.has($(this)).length) || $('body.oe_wait').length);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue