3
0
Fork 0

[FIX] Fixed navigation error after using x2x advanced search

10.0
Benjamin Willig 2017-11-15 13:10:33 +01:00 committed by Jairo Llopis
parent f9a9aba4fb
commit 14cfc98310
1 changed files with 5 additions and 3 deletions

View File

@ -38,9 +38,11 @@ odoo.define('web_advanced_search_x2x.search_filters', function (require) {
'value': 'domain', 'text': core._lt('is in selection'),
});
// Avoid hiding filter when using special widgets
this.events["click"] = function (event) {
event.stopPropagation();
}
this.events = $.extend({}, this.events, {
click: function (event) {
event.stopPropagation();
},
});
return this._super.apply(this, arguments);
},