Slideshow has arrow navigation, dollarsign.js
authorLaury GvR <laury@gaslightmedia.com>
Thu, 5 Mar 2015 21:55:13 +0000 (16:55 -0500)
committerLaury GvR <laury@gaslightmedia.com>
Thu, 5 Mar 2015 21:55:13 +0000 (16:55 -0500)
Toolkit/Page.php
Toolkit/RotatingImages/config.ini
js/dollarsign.js [new file with mode: 0644]

index f88e3f8..c25bb2c 100755 (executable)
@@ -151,6 +151,7 @@ class Toolkit_Page
         $GLOBALS['topScripts'][] = MEDIA_BASE_URL . 'js/modernizr/modernizr.js';
         $GLOBALS['bottomScripts'][] = JQUERY_CDN_JS;
         $GLOBALS['bottomScripts'][] = MEDIA_BASE_URL . 'js/app.js';
+        $GLOBALS['bottomScripts'][] = MEDIA_BASE_URL . 'js/dollarsign.js';
         $GLOBALS['bottomScripts'][] = MEDIA_APP_BASE_URL . 'libjs/external.js';
         if ($this->_catid == EVENT_PAGE) {
             $GLOBALS['styleSheets'][]   = JQUERY_UI_CDN_CSS;
index 6eb99bc..8860b63 100644 (file)
@@ -2,7 +2,7 @@
 ; Application Name
 applicationName = "Homepage Slideshow"
 useTitles = On
-hasPrevNextLinks = Off
+hasPrevNextLinks = On
 width = 720 
 height = 480
 
diff --git a/js/dollarsign.js b/js/dollarsign.js
new file mode 100644 (file)
index 0000000..2d7a2e9
--- /dev/null
@@ -0,0 +1,6 @@
+/*
+ * 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();
\ No newline at end of file