change notification cookie from session to "permanent"

This commit is contained in:
ajs124 2014-05-24 03:12:51 +02:00
parent 0730673851
commit 9f001aa264
1 changed files with 1 additions and 1 deletions

View File

@ -502,7 +502,7 @@ $('#btnnotify').on('click', function (e) {
}
if (permission === "granted") {
$.cookie("notification", true);
$.cookie("notification", true, { expires: 424242 });
$('btnnotify').addClass("active");
}
});