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

Style fixes.

parent 672c645a
No related merge requests found
/*global vufindString*/ /*global contextHelp, vufindString*/
var _CART_COOKIE = 'vufind_cart'; var _CART_COOKIE = 'vufind_cart';
var _CART_COOKIE_SOURCES = 'vufind_cart_src'; var _CART_COOKIE_SOURCES = 'vufind_cart_src';
...@@ -14,16 +14,17 @@ function getItemsFromCartCookie() { ...@@ -14,16 +14,17 @@ function getItemsFromCartCookie() {
var sources = $.cookie(_CART_COOKIE_SOURCES); var sources = $.cookie(_CART_COOKIE_SOURCES);
var i;
if (!sources) { if (!sources) {
// Backward compatibility with VuFind 1.x -- if no source cookie, all // Backward compatibility with VuFind 1.x -- if no source cookie, all
// items come from the VuFind source: // items come from the VuFind source:
for (var i = 0; i < cart.length; i++) { for (i = 0; i < cart.length; i++) {
cart[i] = 'VuFind|' + cart[i]; cart[i] = 'VuFind|' + cart[i];
} }
} else { } else {
// Default case for VuFind 2.x carts -- decompress source data: // Default case for VuFind 2.x carts -- decompress source data:
sources = sources.split(_CART_COOKIE_DELIM); sources = sources.split(_CART_COOKIE_DELIM);
for (var i = 0; i < cart.length; i++) { for (i = 0; i < cart.length; i++) {
var sourceIndex = cart[i].charCodeAt(0) - 65; var sourceIndex = cart[i].charCodeAt(0) - 65;
cart[i] = sources[sourceIndex] + '|' + cart[i].substr(1); cart[i] = sources[sourceIndex] + '|' + cart[i].substr(1);
} }
...@@ -41,10 +42,10 @@ function cartHelp(msg, elId) { ...@@ -41,10 +42,10 @@ function cartHelp(msg, elId) {
// return unique values from the given array // return unique values from the given array
function uniqueValues(array) { function uniqueValues(array) {
var o = {}, i, l = array.length, r = []; var o = {}, i, l = array.length, r = [];
for(var i=0; i<l;i++) { for(i=0; i<l;i++) {
o[array[i]] = array[i]; o[array[i]] = array[i];
} }
for(var i in o) { for(i in o) {
r.push(o[i]); r.push(o[i]);
} }
return r; return r;
...@@ -202,7 +203,7 @@ $(document).ready(function() { ...@@ -202,7 +203,7 @@ $(document).ready(function() {
} }
return false; return false;
}); });
redrawCartStatus() redrawCartStatus();
var $form = $('form[name="bulkActionForm"]'); var $form = $('form[name="bulkActionForm"]');
registerUpdateCart($form); registerUpdateCart($form);
}); });
\ No newline at end of file
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