arteleku_drupal_module/js/historico.js
2017-12-15 01:09:28 +01:00

14 lines
270 B
JavaScript

// 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));