X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/637f96b139a895372c2e90684858c07fb09a709f..57a20265fc4e83cdaa26d8c05af2e4d9a77afea0:/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 dc9fac202..4d001e0c0 100644
--- a/apps/wolnelektury_core/static/js/search.js
+++ b/apps/wolnelektury_core/static/js/search.js
@@ -8,6 +8,7 @@ var __bind = function (self, fn) {
 	options: {
           minLength: 0,
 	  dataType: "json",
+          host: '',
         },
 
 	_create: function() {
@@ -24,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();
 	    }
@@ -32,7 +33,7 @@ var __bind = function (self, fn) {
    
 	render_item: function (ul, item) {
 	    return $("<li></li>").data('item.autocomplete', item)
-		.append('<a href="'+item.url+'"><span class="search-hint-label">'+item.label+'</span>'+
+		.append('<a href="'+this.options.host+item.url+'"><span class="search-hint-label">'+item.label+'</span>'+
 			'<span class="search-hint-category mono">'+item.category+'</span></a>')
 		.appendTo(ul);
 	},