Files

19 lines
270 B
Twig
Raw Permalink Normal View History

2025-10-08 11:39:17 -04:00
/**
* @file
* Custom behaviors for {{ layout_name|lower }} layout.
*/
(function (Drupal) {
'use strict';
Drupal.behaviors.{{ layout_machine_name|camelize(false) }} = {
attach (context, settings) {
console.log('It works!');
}
};
} (Drupal));