From e5fe2a663738f95c8842d4ebbdbe3999f1e0d17d Mon Sep 17 00:00:00 2001 From: Paul Pound Date: Tue, 26 Aug 2014 10:11:30 -0300 Subject: [PATCH] added our proxy url for eds content --- targets/eds/js/eds_results.js | 4 ++-- targets/eds/js/eds_results_article.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/targets/eds/js/eds_results.js b/targets/eds/js/eds_results.js index 55d5c41..ce0109e 100644 --- a/targets/eds/js/eds_results.js +++ b/targets/eds/js/eds_results.js @@ -26,7 +26,7 @@ Drupal.behaviors.roblib_search_eds = { if (typeof val.Items.Ti !== 'undefined') { jQuery.each(val.Items.Ti, function(key2, val2){ items.push('
'); - items.push(''+val2.Data+'
'); + items.push(''+val2.Data+''); }) } items.push('
'); @@ -67,7 +67,7 @@ Drupal.behaviors.roblib_search_eds = { //var host = "http://eds-api.ebscohost.com"; //var get = "/edsapi/rest/Search?query=history&searchmode=all&resultsperpage=20&pagenumber=1&sort=relevance&highlight=y&includefacets=y&facetfilter=1%2cSourceType%3aMagazines%2cSourceType%3aNews%2cSourceType%3aAcademic+Journals%2cSourceType%3aConference+Materials&view=detailed"; var href_str = 'http://search.ebscohost.com/login.aspx?direct=true&site=ehost-live&scope=site&type=1&custid=uprince&groupid=main&profid=' + profile + '&mode=bool&lang=en&bquery='; - jQuery('#roblib-search-eds-more').empty().append('See all results'); + jQuery('#roblib-search-eds-more').empty().append('See all results'); }); } diff --git a/targets/eds/js/eds_results_article.js b/targets/eds/js/eds_results_article.js index 486b3b0..5c5ee0e 100644 --- a/targets/eds/js/eds_results_article.js +++ b/targets/eds/js/eds_results_article.js @@ -27,7 +27,7 @@ Drupal.behaviors.roblib_search_eds_articles = { if (typeof val.Items.Ti !== 'undefined') { jQuery.each(val.Items.Ti, function(key2, val2){ items.push('
'); - items.push(''+val2.Data+'
'); + items.push(''+val2.Data+'
'); }) } items.push('
'); @@ -58,7 +58,7 @@ Drupal.behaviors.roblib_search_eds_articles = { }) var query_str = data.queries[0].query; var href_str = 'http://search.ebscohost.com/login.aspx?direct=true&site=ehost-live&scope=site&type=1&custid=uprince&groupid=main&profid=' + profile +'&mode=bool&lang=en&bquery='; - jQuery('#roblib-search-eds-article-more').empty().append('See all results'); + jQuery('#roblib-search-eds-article-more').empty().append('See all results'); }); }