This commit is contained in:
Mirco Wittrien 2019-10-23 12:08:05 +02:00
parent 1b0e8e6ec8
commit de95ec4a26
2 changed files with 3 additions and 2 deletions

View File

@ -5562,6 +5562,7 @@ var BDFDB = {myPlugins: BDFDB && BDFDB.myPlugins || {}, cleanUps: BDFDB && BDFDB
} }
} : undefined; } : undefined;
LibraryComponents.NumberBadge = BDFDB.ModuleUtils.findByName("NumberBadge"); LibraryComponents.NumberBadge = BDFDB.ModuleUtils.findByName("NumberBadge");
LibraryComponents.Popout = BDFDB.ModuleUtils.findByName("Popout");
LibraryComponents.SvgIcon = BDFDB.ModuleUtils.findByProperties("Gradients", "Names"); LibraryComponents.SvgIcon = BDFDB.ModuleUtils.findByProperties("Gradients", "Names");
LibraryComponents.SettingsPanel = reactInitialized ? class BDFDB_SettingsPanel extends LibraryModules.React.Component { LibraryComponents.SettingsPanel = reactInitialized ? class BDFDB_SettingsPanel extends LibraryModules.React.Component {
render() { render() {
@ -7232,7 +7233,7 @@ var BDFDB = {myPlugins: BDFDB && BDFDB.myPlugins || {}, cleanUps: BDFDB && BDFDB
}}); }});
}; };
BDFDB.ModuleUtils.DevFuncs.listenstop = function () { BDFDB.ModuleUtils.DevFuncs.listenstop = function () {
if (BDFDB.ModuleUtils.DevFuncs.listen.p == "function") BDFDB.ModuleUtils.DevFuncs.listen.p(); if (typeof BDFDB.ModuleUtils.DevFuncs.listen.p == "function") BDFDB.ModuleUtils.DevFuncs.listen.p();
}; };
BDFDB.ModuleUtils.DevFuncs.req = getWebModuleReq(); BDFDB.ModuleUtils.DevFuncs.req = getWebModuleReq();
} }

File diff suppressed because one or more lines are too long