This commit is contained in:
calcu1on
2025-03-15 17:25:17 -04:00
parent 9dbfbeecef
commit d38d4aabc1
105 changed files with 2469 additions and 1484 deletions

View File

@@ -0,0 +1,11 @@
(function (Drupal, once) {
Drupal.behaviors.dialog = {
attach: function (context, settings) {
let settingsTray = once('contentBlockPreview', '#drupal-off-canvas', context);
console.log(settingsTray);
settingsTray.forEach((tray) => {
console.log("hello");
});
}
};
})(Drupal, once);