mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-02-04 08:13:38 +00:00
24 lines
251 B
JavaScript
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() {
|
|
|
|
});
|
|
|
|
*/
|