X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/d316a52151685a1b7c295baa12b73a73eabe5657..ab8ffbde2df33d9c699e029ba613d2b014ba44b8:/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 6afc4a399..4d001e0c0 100644 --- a/apps/wolnelektury_core/static/js/search.js +++ b/apps/wolnelektury_core/static/js/search.js @@ -7,6 +7,8 @@ var __bind = function (self, fn) { $.widget("wl.search", { options: { minLength: 0, + dataType: "json", + host: '', }, _create: function() { @@ -14,14 +16,16 @@ var __bind = function (self, fn) { minLength: this.options.minLength, select: __bind(this, this.enter), focus: function() { return false; }, - source: this.element.data('source'), + 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) { if (ui.item.url != undefined) { - location.href = ui.item.url; + location.href = this.options.host+ui.item.url; } else { this.element.closest('form').submit(); } @@ -29,10 +33,10 @@ var __bind = function (self, fn) { render_item: function (ul, item) { return $("
  • ").data('item.autocomplete', item) - .append(''+item.label+''+ + .append(''+item.label+''+ ''+item.category+'') .appendTo(ul); - }, + }, destroy: function() {