summaryrefslogtreecommitdiff
path: root/themes/default/js/plugins.js
diff options
context:
space:
mode:
Diffstat (limited to 'themes/default/js/plugins.js')
-rw-r--r--themes/default/js/plugins.js23
1 files changed, 23 insertions, 0 deletions
diff --git a/themes/default/js/plugins.js b/themes/default/js/plugins.js
index b79bf73..07c4f2d 100644
--- a/themes/default/js/plugins.js
+++ b/themes/default/js/plugins.js
@@ -9,3 +9,26 @@ window.log = function f(){ log.history = log.history || []; log.history.push(arg
// place any jQuery/helper plugins in here, instead of separate, slower script files.
+// 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() {
+
+});
+
+*/