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

18 lines
219 B
JavaScript

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