use default cookie-path instead of /

This commit is contained in:
Manuel Friedli 2014-06-28 14:34:20 +02:00
parent 66287994ca
commit b45b6bcaad

8
uhr.js
View file

@ -57,7 +57,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
uhr._update();
}, 1000);
this._update();
$.cookie('uhr-status' + this._id, 'on', {expires: 365, path: '/'});
$.cookie('uhr-status' + this._id, 'on', {expires: 365});
} else {
}
},
@ -66,7 +66,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
window.clearInterval(this._timer);
this._timer = null;
this._update();
$.cookie('uhr-status' + this._id, 'off', {expires: 365, path: '/'});
$.cookie('uhr-status' + this._id, 'off', {expires: 365});
}
},
toggle: function() {
@ -85,7 +85,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
uhr._currentMinute = -1;
uhr._update();
});
$.cookie('uhr-language' + this._id, languageKey, {expires: 365, path: '/'});
$.cookie('uhr-language' + this._id, languageKey, {expires: 365});
this._update();
}
},
@ -94,7 +94,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
this.element.removeClass(this.options.theme).addClass(theme);
$('#uhr-onoffswitch' + this._id).removeClass(this.options.theme).addClass(theme);
this.options.theme = theme;
$.cookie('uhr-theme' + this._id, theme, {expires: 365, path: '/'});
$.cookie('uhr-theme' + this._id, theme, {expires: 365});
}
},
time: function(time) {