17 lines
312 B
JavaScript
17 lines
312 B
JavaScript
/**
|
|
* @file
|
|
* Placeholder file for custom sub-theme behaviors.
|
|
*
|
|
*/
|
|
(function ($, Drupal) {
|
|
|
|
/**
|
|
* Use this behavior as a template for custom Javascript.
|
|
*/
|
|
Drupal.behaviors.exampleBehavior = {
|
|
attach: function (context, settings) {
|
|
//alert("I'm alive!");
|
|
}
|
|
};
|
|
|
|
})(jQuery, Drupal);
|