X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/4fb0bfd1b7351af7d83a2cc69e7fca666a359160..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 293b9e3fa..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,7 +16,7 @@ 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($.extend(opts, this.options)) @@ -23,7 +25,7 @@ var __bind = function (self, fn) { 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(); } @@ -31,7 +33,7 @@ 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); },