Include more information in case of JS error

This commit is contained in:
Adrian Vollmer 2022-10-09 10:51:53 +02:00
parent 369a9fd3cb
commit 851532a125

View File

@ -30,7 +30,7 @@ var embed_js = function() {
}
} catch (e) {
// Make sure all scripts are loaded
console.error(e);
console.error("Caught error in " + oldScript.getAttribute("src"), e);
}
});
};