diff --git a/code/boot.js b/code/boot.js index fcc04011..fea7aa00 100644 --- a/code/boot.js +++ b/code/boot.js @@ -423,7 +423,13 @@ function boot() { $('#sidebar').show(); 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();