From 3eef911dac2ad6e80c08c0b835ddcc4c6b5fab9c Mon Sep 17 00:00:00 2001 From: ppound Date: Tue, 28 Sep 2021 14:06:04 -0300 Subject: [PATCH] found some more http calls to the proxy --- targets/eds/js/eds_results.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/targets/eds/js/eds_results.js b/targets/eds/js/eds_results.js index 282b3c6..65f7eff 100644 --- a/targets/eds/js/eds_results.js +++ b/targets/eds/js/eds_results.js @@ -2,7 +2,7 @@ Drupal.behaviors.roblib_search_eds = { attach: function (context, settings) { $url = settings.roblib_search_eds.search_url; profile = settings.roblib_search_eds.eds_profile; - proxy_url = "http://proxy.library.upei.ca/login?url="; + proxy_url = "https://proxy.library.upei.ca/login?url="; jQuery.getJSON($url, function (data) { var items = []; var numberOfDocs = 0; @@ -67,7 +67,7 @@ Drupal.behaviors.roblib_search_eds = { } items.push(''); } else { - items.push('
You must login to view this result, click here to login
' ); + items.push('
You must login to view this result, click here to login
' ); } }); jQuery('#' + 'roblib-search-content-eds').empty().append(items.join(''));