Merge branch 'const-PluginHost' of wn/tt-rss into js-objects

master
fox 6 years ago committed by Gogs
commit 5bcf59739d

@ -346,7 +346,8 @@ define(["dojo/_base/declare"], function (declare) {
} }
// PluginHost might not be available on non-index pages // PluginHost might not be available on non-index pages
window.PluginHost && PluginHost.run(PluginHost.HOOK_PARAMS_LOADED, App._initParams); if (typeof PluginHost !== 'undefined')
PluginHost.run(PluginHost.HOOK_PARAMS_LOADED, App._initParams);
} }
this.initSecondStage(); this.initSecondStage();

Loading…
Cancel
Save