X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/29f694eea94d09bd66976321ddfd80ac30b73d38..746bfb66224e6a1065e5355ed63f9c4836b0a498:/src/wolnelektury/static/js/annoy.js diff --git a/src/wolnelektury/static/js/annoy.js b/src/wolnelektury/static/js/annoy.js index 3104097a9..d71f14676 100644 --- a/src/wolnelektury/static/js/annoy.js +++ b/src/wolnelektury/static/js/annoy.js @@ -6,18 +6,18 @@ $("#annoy-on").click(function(e) { e.preventDefault(); $("#annoy").slideDown('fast'); $(this).hide(); - if (Modernizr.localstorage) localStorage.removeItem("annoyed2013"); + if (Modernizr.localstorage) localStorage.removeItem("annoyed2019"); }); $("#annoy-off").click(function() { $("#annoy").slideUp('fast'); $("#annoy-on").show(); - if (Modernizr.localstorage) localStorage["annoyed2013"] = true; + if (Modernizr.localstorage) localStorage["annoyed2019"] = true; }); if (Modernizr.localstorage) { - if (!localStorage["annoyed2013"]) { + if (!localStorage["annoyed2019"]) { $("#annoy-on").hide(); $("#annoy").show(); }