diff options
author | 2019-10-23 02:34:11 +0200 | |
---|---|---|
committer | 2019-10-23 02:34:11 +0200 | |
commit | 614514081640df35edb9a04bc10c42e951a48f61 (patch) | |
tree | a8707163a776e38b6eb8c0a85e4d5ef232c8ec03 /examples/tour.html | |
parent | c7ef9d0da705d8f27011fe41d2103c73aae42d2d (diff) | |
download | iced-614514081640df35edb9a04bc10c42e951a48f61.tar.gz iced-614514081640df35edb9a04bc10c42e951a48f61.tar.bz2 iced-614514081640df35edb9a04bc10c42e951a48f61.zip |
Make `tour` example work on Wasm again
Diffstat (limited to 'examples/tour.html')
-rw-r--r-- | examples/tour.html | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/examples/tour.html b/examples/tour.html index b17ac4a2..35360e59 100644 --- a/examples/tour.html +++ b/examples/tour.html @@ -6,8 +6,9 @@ </head> <body> <script type="module"> - import init from "./pkg/iced_tour.js"; - init("./pkg/iced_tour_bg.wasm"); + import init from "./tour/tour.js"; + + init('./tour/tour_bg.wasm'); </script> </body> </html> |