X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/2e7619a7bc917eb1a5514af07ce4258e461f74ec..cda147aa999b09a14dacb097d91638f6b9cca236:/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 0b8dd394a..4d001e0c0 100644 --- a/apps/wolnelektury_core/static/js/search.js +++ b/apps/wolnelektury_core/static/js/search.js @@ -8,26 +8,15 @@ var __bind = function (self, fn) { options: { minLength: 0, dataType: "json", + host: '', }, _create: function() { - console.log("dataType: " + this.options.dataType); - var url = this.element.data('source'); var opts = { minLength: this.options.minLength, select: __bind(this, this.enter), focus: function() { return false; }, - source: function(req, cb) { - $.ajax({url: url, - dataType: "jsonp", - type: "GET", - success: function(data) { - cb(data); - }, - error: function() { cb([]); } - - }); - }, + source: this.element.data('source'), }; this.element.autocomplete($.extend(opts, this.options)) @@ -36,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(); } @@ -44,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); },