Summon the annoying banner.
[wolnelektury.git] / src / wolnelektury / static / js / annoy.js
index 3104097..d71f146 100644 (file)
@@ -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();
     }