From f1c19d7fec74df22d8530e9c93cc1c82a29aa828 Mon Sep 17 00:00:00 2001 From: Laury GvR Date: Fri, 2 Jan 2015 12:58:29 -0500 Subject: [PATCH] JS calls put into functions.php, slideshow enabled --- footer.php | 2 -- functions.php | 29 +++++++++++++++++++++++++++++ header.php | 2 -- js/dollarsign.js | 8 ++++++++ 4 files changed, 37 insertions(+), 4 deletions(-) create mode 100644 js/dollarsign.js diff --git a/footer.php b/footer.php index 5f7322a..4096efa 100644 --- a/footer.php +++ b/footer.php @@ -13,8 +13,6 @@ - - - diff --git a/js/dollarsign.js b/js/dollarsign.js new file mode 100644 index 0000000..34d34e5 --- /dev/null +++ b/js/dollarsign.js @@ -0,0 +1,8 @@ +/* + * To avoid conflicts, Wordpress tends to prefer jQuery being used over $. + * As long as this file is included, no such conflicts should arise. Ensure it + * is called before other .js files using $. + */ + + +var $=jQuery.noConflict(); -- 2.17.1