fix introJs

This commit is contained in:
Son NK 2019-07-07 19:24:21 +02:00
parent 388f520e9a
commit c7df8e9158
2 changed files with 2 additions and 2 deletions

View File

@ -208,7 +208,7 @@
var introShown = localStorage.getItem("introShown");
if ("yes" !== introShown) {
intro().start();
introJs().start();
localStorage.setItem("introShown", "yes")
}

View File

@ -70,7 +70,7 @@
<script>
function startIntro() {
require(['intro'], function (intro) {
intro().start();
introJs().start();
})
}
</script>