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