This commit is contained in:
Mirco Wittrien 2019-08-21 14:22:43 +02:00
parent a21881a381
commit da4f7bc68b
2 changed files with 11 additions and 1 deletions

File diff suppressed because one or more lines are too long

View File

@ -6117,5 +6117,15 @@ var BDFDB = {myPlugins: BDFDB && BDFDB.myPlugins ? BDFDB.myPlugins : {}, BDv2Api
console.clear();
console.log(window.t);
};
BDFDB.WebModules.DevFuncs.listen = function (strings) {
strings = Array.isArray(strings) ? strings : Array.from(arguments);
BDFDB.WebModules.DevFuncs.listenstop();
BDFDB.WebModules.DevFuncs.listen.p = BDFDB.WebModules.patch(BDFDB.WebModules.findByProperties(strings), strings[0], "WebpackSearch", {before: e => {
console.log(e);
}});
};
BDFDB.WebModules.DevFuncs.listenstop = function () {
if (BDFDB.WebModules.DevFuncs.listen.p == "function") BDFDB.WebModules.DevFuncs.listen.p();
};
}
})();