зеркало из https://github.com/mozilla/pluotsorbet.git
Merge pull request #993 from brendandahl/loading-fail
Log loading promise failures.
This commit is contained in:
Коммит
2a91e265b3
4
main.js
4
main.js
|
@ -175,7 +175,9 @@ function start() {
|
||||||
jvm.startIsolate0(config.main, config.args);
|
jvm.startIsolate0(config.main, config.args);
|
||||||
}
|
}
|
||||||
|
|
||||||
Promise.all(loadingPromises).then(start);
|
Promise.all(loadingPromises).then(start, function (reason) {
|
||||||
|
console.error("Loading failed: \"" + reason + "\"");
|
||||||
|
});
|
||||||
|
|
||||||
document.getElementById("start").onclick = function() {
|
document.getElementById("start").onclick = function() {
|
||||||
start();
|
start();
|
||||||
|
|
Загрузка…
Ссылка в новой задаче