set cookie path=/

master
fefa4ka 10 years ago
parent 34f63c9667
commit 2a8c57f954
  1. 2
      zsite/static/js/snippets.js

@ -25,7 +25,7 @@ GetAdj = function(number, one, two) {
setCookie = function(key, value) {
var expires = new Date();
expires.setTime(expires.getTime() + (1 * 24 * 60 * 60 * 1000));
document.cookie = key + '=' + value + ';expires=' + expires.toUTCString();
document.cookie = key + '=' + value + ';expires=' + expires.toUTCString() + ';path=/';
};
$(function() {

Loading…
Cancel
Save