peceful/js/peceful.js

18 lines
312 B
JavaScript
Raw Permalink Normal View History

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