You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
1.5 KiB
27 lines
1.5 KiB
7 years ago
|
Drupal.behaviors.roblib_search_passthru = {
|
||
|
attach: function (context, settings) {
|
||
|
scholar_url = settings.roblib_search_passthru.scholar_search_url;
|
||
|
evergreen_url = settings.roblib_search_passthru.evergreen_search_url;
|
||
7 years ago
|
eds_url = settings.roblib_search_passthru.eds_search_url;
|
||
7 years ago
|
jQuery.getJSON(scholar_url, function (data) {
|
||
|
var scholar_numfound = data.response.numFound;
|
||
|
var query = encodeURIComponent(data.responseHeader.params.q);
|
||
|
jQuery('#roblib-search-passthru-islandscholar-more').empty().append('<a id="passthru-islandscholar-see-more-result"' +
|
||
|
' href="http://www.islandscholar.ca/islandora/search/' + query + '?type=dismax">Islandscholar Results (' + scholar_numfound + ')</a>');
|
||
|
|
||
|
});
|
||
|
jQuery.getJSON(evergreen_url, function (data) {
|
||
|
var evergreen_numfound = data.numberOfRecords;
|
||
|
jQuery('#roblib-search-passthru-evergreen-more').empty().append('<a href = "' + data.catalogBaseSearchUrl + '">PEI Collection (' +
|
||
|
evergreen_numfound +')</a>');
|
||
|
});
|
||
7 years ago
|
jQuery.getJSON(eds_url, function (data) {
|
||
|
var eds_numfound = data.recordCount;
|
||
|
var href_str = 'http://search.ebscohost.com/login.aspx?direct=true&site=ehost-live&scope=site&type=1&custid=uprince&groupid=main&profid=eds&mode=bool&lang=en&bquery=';
|
||
|
jQuery('#roblib-search-passthru-eds-more').empty().append('<a href="http://proxy.library.upei.ca/login?url=' + href_str + query + '">Complete OneSearch results (' +
|
||
|
eds_numfound +')</a>');
|
||
|
});
|
||
7 years ago
|
jQuery('#roblib-search-content-passthru').empty();
|
||
|
}
|
||
|
}
|