Browse Source

[FIX] Fixed navigation error after using x2x advanced search

pull/999/head
Benjamin Willig 7 years ago
committed by Pedro M. Baeza
parent
commit
585d10f5fe
  1. 8
      web_advanced_search/static/src/js/web_advanced_search_x2x.js

8
web_advanced_search/static/src/js/web_advanced_search_x2x.js

@ -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);
},

Loading…
Cancel
Save