OSDN Git Service

Update app/devtools and add it to app drawer [0.2.1]
[kit/kit.git] / autorun.html
1 <!DOCTYPE html>
2 <html lang="ja">
3 <head>
4     <meta charset="UTF-8">
5     <title>kit-autorun</title>
6     <script type="text/javascript">
7         setTimeout(() => {
8             let flag = localStorage.getItem("kit-setup-flag");
9             if( flag ) location.href = "index.html";
10             else location.href = "setup.html";
11         }, 400);
12         window.addEventListener("keydown", (e)=>{
13             if(e.shiftKey) location.href = "index.html?safe=true"
14         })
15     </script>
16 </head>
17
18 <body style="background: #000; color: #eee">
19     Booting kit...
20     <br>
21     press 'shift' to safe boot
22 </body>
23
24 </html>