14 lines
270 B
JavaScript
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));
|
||
|
|