plugin booting - catch exceptions and log, rather than just crashing
This commit is contained in:
parent
13d1ff9aaa
commit
258aa70213
@ -423,7 +423,13 @@ function boot() {
|
|||||||
$('#sidebar').show();
|
$('#sidebar').show();
|
||||||
|
|
||||||
if(window.bootPlugins)
|
if(window.bootPlugins)
|
||||||
$.each(window.bootPlugins, function(ind, ref) { ref(); });
|
$.each(window.bootPlugins, function(ind, ref) {
|
||||||
|
try {
|
||||||
|
ref();
|
||||||
|
} catch(err) {
|
||||||
|
console.log("error starting plugin: index "+ind+", error: "+err);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
window.runOnSmartphonesAfterBoot();
|
window.runOnSmartphonesAfterBoot();
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user