18 lines
247 B
Twig
18 lines
247 B
Twig
/**
|
|
* {{ name }} behaviors.
|
|
*/
|
|
(function ($) {
|
|
|
|
/**
|
|
* Behavior description.
|
|
*/
|
|
Drupal.behaviors.{{ machine_name|camelize(false) }} = {
|
|
attach: function (context, settings) {
|
|
|
|
console.log('It works!');
|
|
|
|
}
|
|
}
|
|
|
|
}(jQuery));
|