v1/vendor/chi-teck/drupal-code-generator/templates/theme/js/theme.twig

18 lines
241 B
Twig

/**
* @file
* {{ name }} behaviors.
*/
(function (Drupal) {
'use strict';
Drupal.behaviors.{{ machine_name|camelize(false) }} = {
attach: function (context, settings) {
console.log('It works!');
}
};
} (Drupal));