first commit without licensingg

This commit is contained in:
kbe
2025-08-21 14:40:43 +02:00
commit fa8d4e58a4
130 changed files with 82163 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
"use strict";
/**
* Enqueue editor scripts.
*/
/**
* Add wrapper to widgets editor.
*/
wp.data.subscribe(function () {
setTimeout(function () {
var elements = document.querySelectorAll('#widgets-editor .editor-styles-wrapper:not(.cs-editor-styles-wrapper)');
if (elements && elements.length) {
elements.forEach(function (wrapper) {
wrapper.classList.add('cs-editor-styles-wrapper');
});
}
}, 1);
});