1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 11:55:56 +00:00

catch plugin JS errors

This commit is contained in:
Andrew Dolgov
2016-08-10 12:23:35 +03:00
parent f6d2787a8e
commit 546b419f52
2 changed files with 10 additions and 5 deletions

View File

@@ -118,7 +118,12 @@
foreach (PluginHost::getInstance()->get_plugins() as $n => $p) {
if (method_exists($p, "get_js")) {
echo "try {";
echo JShrink\Minifier::minify($p->get_js());
echo "} catch (e) {
console.warn('failed to initialize plugin JS: $n');
console.warn(e);
}";
}
}