1
0
mirror of https://github.com/emilk/egui.git synced 2026-06-28 07:23:13 -04:00

Rename egui_demo to egui_demo_app to avoid confusion with egui_demo_lib

This commit is contained in:
Emil Ernerfeldt
2020-12-29 17:54:52 +01:00
parent 84414e62a3
commit 6d9cdafbc9
13 changed files with 27 additions and 29 deletions

View File

@@ -57,13 +57,13 @@
</script>
<!-- this is the JS generated by the `wasm-bindgen` CLI tool -->
<script src="egui_demo.js"></script>
<script src="egui_demo_app.js"></script>
<script>
// We'll defer our execution until the wasm is ready to go.
// Here we tell bindgen the path to the wasm file so it can start
// initialization and return to us a promise when it's done.
wasm_bindgen("./egui_demo_bg.wasm")
wasm_bindgen("./egui_demo_app_bg.wasm")
.then(on_wasm_loaded)["catch"](console.error);
function on_wasm_loaded() {