arteleku_drupal_module/js/historico.js

14 lines
270 B
JavaScript
Raw Normal View History

2017-12-15 01:09:28 +01:00
// Using the closure to map jQuery to $.
(function ($) {
// Store our function as a property of Drupal.behaviors.
Drupal.behaviors.arteleku_historico = {
attach: function (context, settings) {
console.log(context);
console.log(settings);
}
};
}(jQuery));