add domain to redirection
authorMarcin Koziej <marcin@lolownia.org>
Thu, 17 May 2012 13:58:12 +0000 (15:58 +0200)
committerMarcin Koziej <marcin@lolownia.org>
Thu, 17 May 2012 13:58:12 +0000 (15:58 +0200)
apps/wolnelektury_core/static/js/search.js
apps/wolnelektury_core/static/js/widget.js

index dc9fac2..d7b00c2 100644 (file)
@@ -8,6 +8,7 @@ var __bind = function (self, fn) {
        options: {
           minLength: 0,
          dataType: "json",
+          host: '',
         },
 
        _create: function() {
@@ -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);
        }, 
index 0947629..abadfd9 100644 (file)
@@ -71,7 +71,8 @@ scriptSearch.onload = function() {
                                 error: function() { cb([]); }
                     });
                         },
-            dataType: "jsonp"});
+            dataType: "jsonp",
+            host: "http://"+host});
 }
 scriptSearch.onreadystatechange = function() { if (scriptSearch.readyState == 'complete') { scriptSearch.onload(); } };