20 lines
765 B
JavaScript
Executable File
20 lines
765 B
JavaScript
Executable File
/* /assets/js/bridge/categorization-master.js (PLATZHALTER - LOGIK IN CLEANUP.JS VERSCHOBEN) */
|
|
(function(B){
|
|
|
|
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.
|
|
log('Plugin existiert (Logik nach cleanup.js verschoben).');
|
|
});
|
|
|
|
})(window.BridgeParts || (window.BridgeParts = {}));
|