Merge pull request #993 from brendandahl/loading-fail

Log loading promise failures.
This commit is contained in:
Myk Melez 2015-01-30 18:31:15 -08:00
Родитель d7ccc1e539 17421b060d
Коммит 2a91e265b3
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -175,7 +175,9 @@ function start() {
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() {
start();