diff options
Diffstat (limited to '')
-rw-r--r-- | examples/tour.html | 14 | ||||
-rw-r--r-- | examples/tour.rs | 2 |
2 files changed, 1 insertions, 15 deletions
diff --git a/examples/tour.html b/examples/tour.html deleted file mode 100644 index 35360e59..00000000 --- a/examples/tour.html +++ /dev/null @@ -1,14 +0,0 @@ -<!DOCTYPE html> -<html> - <head> - <meta http-equiv="Content-type" content="text/html; charset=utf-8"/> - <title>Tour - Iced</title> - </head> - <body> - <script type="module"> - import init from "./tour/tour.js"; - - init('./tour/tour_bg.wasm'); - </script> - </body> -</html> diff --git a/examples/tour.rs b/examples/tour.rs index 0169c8e1..8dbae2b8 100644 --- a/examples/tour.rs +++ b/examples/tour.rs @@ -27,7 +27,7 @@ impl Sandbox for Tour { scroll: scrollable::State::new(), back_button: button::State::new(), next_button: button::State::new(), - debug: true, + debug: false, } } |