This commit is contained in:
Bastian Allgeier
2020-07-07 12:40:13 +02:00
parent 5f025ac2c2
commit f79d2e960c
176 changed files with 10532 additions and 5343 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -9,6 +9,7 @@ window.panel.plugins = {
routes: [],
use: [],
views: {},
thirdParty: {}
};
window.panel.plugin = function (plugin, parts) {
@@ -52,6 +53,11 @@ window.panel.plugin = function (plugin, parts) {
window.panel.plugins.login = parts.login;
}
// Third-party plugins
resolve(parts, "thirdParty", function(name, options) {
window.panel.plugins["thirdParty"][name] = options;
});
};
function resolve(object, type, callback) {

File diff suppressed because one or more lines are too long