summaryrefslogtreecommitdiff
path: root/web/index.html
diff options
context:
space:
mode:
authorDevaev Maxim <[email protected]>2019-07-13 06:38:55 +0300
committerDevaev Maxim <[email protected]>2019-07-13 06:38:55 +0300
commit98468bfa3069e76862be8e0a19bbe8e3fc6748fa (patch)
tree8a2cf0083532b2d7058b194410bd32386a7f07d3 /web/index.html
parentad97aecaf4d043c59d018310b4d8f4852d30b6e0 (diff)
using js modules
Diffstat (limited to 'web/index.html')
-rw-r--r--web/index.html10
1 files changed, 4 insertions, 6 deletions
diff --git a/web/index.html b/web/index.html
index f6a75f3e..72c13d34 100644
--- a/web/index.html
+++ b/web/index.html
@@ -41,12 +41,10 @@
<link rel="stylesheet" href="share/css/start.css">
<link rel="stylesheet" href="share/css/index/index.css">
- <script src="share/js/bb.js"></script>
- <script src="share/js/tools.js"></script>
- <script src="share/js/wm.js"></script>
- <script src="share/js/index/main.js"></script>
-
- <script>window.onload = main;</script>
+ <script type="module">
+ import {main} from "./share/js/index/main.js";
+ main();
+ </script>
</head>
<body>