This commit is contained in:
2026-01-16 01:24:53 +01:00
parent 31fd91d815
commit ef8b556b73
8 changed files with 23 additions and 16 deletions

View File

@@ -4,11 +4,16 @@
if (!B || typeof grapesjs === 'undefined') return;
const PluginName = 'bridge-categorization-master';
const log = (message) => {
if (typeof B.log === 'function') {
B.log(PluginName, message, '#888', 'info');
}
};
// Dies ist nun ein leeres Plugin. Die Logik wurde nach categorization-cleanup.js verschoben.
grapesjs.plugins.add(PluginName, (editor, opts = {}) => {
// Leere Plugin-Funktion. Führt keine Aufräumarbeiten, Normalisierung oder Exporte durch.
console.log(`[${PluginName}] Plugin existiert (Logik nach cleanup.js verschoben).`);
log('Plugin existiert (Logik nach cleanup.js verschoben).');
});
})(window.BridgeParts || (window.BridgeParts = {}));