Skip to content
Snippets Groups Projects
Commit ebf77d3b authored by Demian Katz's avatar Demian Katz
Browse files

SSL for HathiTrust (resolves VUFIND-1169)

parent a59f04e9
No related merge requests found
......@@ -25,7 +25,7 @@ function getHTPreviews(skeys) {
for(var i = 0; i < bibkeys.length; i++) {
batch.push(bibkeys[i]);
if ((i > 0 && i % 20 == 0) || i == bibkeys.length-1) {
var script = 'http://catalog.hathitrust.org/api/volumes/brief/json/'
var script = 'https://catalog.hathitrust.org/api/volumes/brief/json/'
+ batch.join('|') + '&callback=processHTBookInfo';
$.getScript(script);
batch = [];
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment