wasm-bindgen/examples/webgl/index.js
Alex Crichton bc36b6f84b Add catch(console.error) to all examples
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
2018-09-28 13:55:07 -07:00

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);