drupal-erable/web/themes/erabletheme/js/erabletheme.js

18 lines
219 B
JavaScript
Raw Normal View History

2023-11-30 17:33:32 +01:00
/**
* @file
* erabletheme behaviors.
*/
(function (Drupal) {
'use strict';
Drupal.behaviors.erabletheme = {
attach: function (context, settings) {
console.log('It works!');
}
};
} (Drupal));