FreedomBox/themes/default/js/functions.js
2012-03-12 14:39:31 -04:00

24 lines
251 B
JavaScript

// remap jQuery to $
(function($){})(window.jQuery);
/* trigger when page is ready */
$(document).ready(function (){
// your functions go here
});
/* optional triggers
$(window).load(function() {
});
$(window).resize(function() {
});
*/