Skip to content
Snippets Groups Projects
Commit 7a50b3b0 authored by Martin Trigaux's avatar Martin Trigaux
Browse files

[FIX] web: missing self initialisation

The self is needed in the _value() method below, opw 608878
parent 0d22a34f
No related branches found
No related tags found
No related merge requests found
......@@ -466,6 +466,7 @@ instance.web.SearchView = instance.web.Widget.extend(/** @lends instance.web.Sea
* Sets up search view's view-wide auto-completion widget
*/
setup_global_completion: function () {
var self = this;
var autocomplete = this.$el.autocomplete({
source: this.proxy('complete_global_search'),
select: this.proxy('select_completion'),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment