mirror of https://github.com/pyodide/pyodide.git
console.warn rather than alert
This commit is contained in:
parent
2a1a5b722e
commit
3de466023a
|
@ -10,7 +10,8 @@ var languagePluginLoader = new Promise((resolve, reject) => {
|
|||
if (wasmXHR.status === 200 || wasmXHR.status === 0) {
|
||||
Module.wasmBinary = wasmXHR.response;
|
||||
} else {
|
||||
alert(`Couldn't download the pyodide.asm.wasm binary. Response was ${wasmXHR.status}`);
|
||||
console.warn(
|
||||
`Couldn't download the pyodide.asm.wasm binary. Response was ${wasmXHR.status}`);
|
||||
reject();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue