fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
fix for checking paths in waiter
[wolnelektury.git]
/
apps
/
wolnelektury_core
/
static
/
js
/
search.js
diff --git
a/apps/wolnelektury_core/static/js/search.js
b/apps/wolnelektury_core/static/js/search.js
index
6afc4a3
..
293b9e3
100644
(file)
--- a/
apps/wolnelektury_core/static/js/search.js
+++ b/
apps/wolnelektury_core/static/js/search.js
@@
-16,7
+16,9
@@
var __bind = function (self, fn) {
focus: function() { return false; },
source: this.element.data('source'),
};
focus: function() { return false; },
source: this.element.data('source'),
};
- this.element.autocomplete(opts).data("autocomplete")._renderItem = __bind(this, this.render_item);
+
+ this.element.autocomplete($.extend(opts, this.options))
+ .data("autocomplete")._renderItem = __bind(this, this.render_item);
},
enter: function(event, ui) {
},
enter: function(event, ui) {
@@
-32,7
+34,7
@@
var __bind = function (self, fn) {
.append('<a href="'+item.url+'"><span class="search-hint-label">'+item.label+'</span>'+
'<span class="search-hint-category mono">'+item.category+'</span></a>')
.appendTo(ul);
.append('<a href="'+item.url+'"><span class="search-hint-label">'+item.label+'</span>'+
'<span class="search-hint-category mono">'+item.category+'</span></a>')
.appendTo(ul);
- },
+ },
destroy: function() {
destroy: function() {