X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/e64195821d0f65b6ac9a68684d038164786b1c39..637f96b139a895372c2e90684858c07fb09a709f:/apps/wolnelektury_core/static/js/widget.js?ds=sidebyside diff --git a/apps/wolnelektury_core/static/js/widget.js b/apps/wolnelektury_core/static/js/widget.js index 183b5154d..09476297f 100644 --- a/apps/wolnelektury_core/static/js/widget.js +++ b/apps/wolnelektury_core/static/js/widget.js @@ -10,7 +10,7 @@ var body = document.getElementsByTagName('body') var stylesheet = document.createElement('link'); var stylesheetJQUI = document.createElement('linl'); -var host = 'localhost:8000'; //'www.wolnelektury.pl'; +var host = 'wolnelektury.pl'; /* set attributes of created elements */ stylesheet.setAttribute('type', 'text/css'); @@ -60,7 +60,18 @@ scriptUI.onreadystatechange = function() { if (scriptUI.readyState == 'complete' scriptSearch.onload = function() { var s = $('#id_qq'); - s.search({source: s.attr('data-source')}); + var url = s.attr('data-source'); + s.search({source: + function(req, cb) { + $.ajax({url: url, + dataType: "jsonp", + data: { term: req.term }, + type: "GET", + success: function(data) { cb(data); }, + error: function() { cb([]); } + }); + }, + dataType: "jsonp"}); } scriptSearch.onreadystatechange = function() { if (scriptSearch.readyState == 'complete') { scriptSearch.onload(); } };