mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-11-28 05:52:21 +03:00
bc36b6f84b
Some examples have been failing to load in some browsers, and this ensures that whenever the promise to load Rust code fails we log any errors happening instead of accidentally failing silently. This helped debug a bit in #897
6 lines
163 B
JavaScript
Executable File
6 lines
163 B
JavaScript
Executable File
// For more comments about what's going on here, check out the `hello_world`
|
|
// example.
|
|
import('./webgl')
|
|
.then(webgl => webgl.draw())
|
|
.catch(console.error);
|