Randomg things.

This commit is contained in:
calcu1on
2025-10-15 22:49:16 -04:00
parent 73b1faf9cc
commit 09043d7884
12 changed files with 8214 additions and 114 deletions

View File

@@ -0,0 +1,10 @@
((Drupal, once) => {
Drupal.behaviors.myBehavior = {
attach(context) {
let target = once('myBehavior', 'body');
target.forEach((t) => {
alert('Behavior attached test');
});
},
};
})(Drupal, once);