Minor fixes

remotes/origin/1203
re0ne 11 years ago
parent 9bcb8fa322
commit d8d8395f5a
  1. 4
      templates/client/static_client/js/banners.js

@ -15,10 +15,10 @@
if (value instanceof Array) {
for (var i = 0, l = value.length; i < l; i++) {
search.push(key + "=" + value[i]);
search.push(encodeURIComponent(key) + "=" + encodeURIComponent(value[i]));
}
} else {
search.push(key + "=" + value);
search.push(encodeURIComponent(key) + "=" + encodeURIComponent(value));
}
}
}

Loading…
Cancel
Save