From 3efd3026d22c71e95a853985f3f50f52147d287e Mon Sep 17 00:00:00 2001 From: LLLL Colonq Date: Sun, 13 Oct 2024 23:46:06 -0400 Subject: Instanced rendering, mouse move event --- src/context.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/context.rs') diff --git a/src/context.rs b/src/context.rs index 7dca01f..dc1d3a2 100644 --- a/src/context.rs +++ b/src/context.rs @@ -40,7 +40,7 @@ impl Context { let gl = web_sys::window() .and_then(|win| win.document()) .and_then(|doc| { - let dst = doc.get_element_by_id("oubliette-parent")?; + let dst = doc.get_element_by_id("teleia-parent")?; let canvas = web_sys::Element::from(window.canvas().expect("failed to find canvas")); dst.append_child(&canvas).ok()?; let c = canvas.dyn_into::().ok()?; -- cgit v1.2.3