From b8bf902291073e8af05205ae40502fbe793ea318 Mon Sep 17 00:00:00 2001 From: Marcin Koziej Date: Thu, 17 May 2012 15:58:12 +0200 Subject: [PATCH] add domain to redirection --- apps/wolnelektury_core/static/js/search.js | 3 ++- apps/wolnelektury_core/static/js/widget.js | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/apps/wolnelektury_core/static/js/search.js b/apps/wolnelektury_core/static/js/search.js index dc9fac202..d7b00c2d0 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() { @@ -32,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); }, diff --git a/apps/wolnelektury_core/static/js/widget.js b/apps/wolnelektury_core/static/js/widget.js index 09476297f..abadfd9cf 100644 --- a/apps/wolnelektury_core/static/js/widget.js +++ b/apps/wolnelektury_core/static/js/widget.js @@ -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(); } }; -- 2.20.1