$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;
--- /dev/null
+/*
+ * 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