tutorial button
[redakcja.git] / redakcja / static / js / catalogue / catalogue.js
index 33764a7..fa3f5f2 100755 (executable)
         }
         $('#tutModal').on('hidden.bs.modal', tut);
 
-        var $tuton = $("#tuton");
-        if (sessionStorage.getItem("tutorial") == "on" && $tuton.length == 0) {
+        if (sessionStorage.getItem("tutorial") == "on" && $('#tuton').length == 0) {
             tutreset();
             tut();
         }
-        $tuton.on('click', tuton);
+        $(document).on('click', '#tuton', tuton);
         $(document).on('click', '.tutorial-off', tutoff);
         $(document).on('click', '.tutorial-next', tut);
     });