From 89572e781dc6cb7b067edce12fca48219c650dcf Mon Sep 17 00:00:00 2001 From: Scott Walkinshaw Date: Tue, 19 Jul 2011 13:42:31 -0600 Subject: [PATCH] Replaced $ with jQuery for noconflict mode compatibility --- js/scripts.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/js/scripts.js b/js/scripts.js index 4a887b8..71d4b86 100644 --- a/js/scripts.js +++ b/js/scripts.js @@ -1,10 +1,10 @@ -$(document).ready(function() { +jQuery(document).ready(function() { -// $('#cycle').cycle({ +// jQuery('#cycle').cycle({ // fx: 'fade' // }); -// $('figure.gallery-item a').attr('rel','gallery'); -// $('figure.gallery-item a[rel="gallery"]').fancybox(); +// jQuery('figure.gallery-item a').attr('rel','gallery'); +// jQuery('figure.gallery-item a[rel="gallery"]').fancybox(); -}); \ No newline at end of file +});