Hello,
I am just starting a site build and have run into a general snag. I was using the ARI Carousel plugin for the last 4 or 5 days. It was displaying fine and used on most all of my pages with no trouble. Today, I have done something to stop it from displaying. I am getting a TypeError in the console that says.
InputsExclusion.push('.content_vote','#rt-popup','#rt-popuplogin','#vmMainPage') is not a function.
I can't seem to find anything about it on the web. I did add a small codeset to the main Gantry template in order to enable Squeezebox. The code is pasted below and was in the header originally. I have removed it from the main template and cleared all caches, but still no luck.
The site URL is
www.thesacredprint.com
Any thoughts?
Here is the code that was added to the template header.
Code: |
<script type="text/javascript" src="<?php echo $this->baseurl ?>/media/system/js/modal.js"> </script>
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/media/system/css/modal.css" type="text/css" />
<script type="text/javascript">
// <!--
window.addEvent('domready', function(){ var JTooltips = new Tips($$('.hasTip'), { maxTitleChars: 50, fixed: 'false'}); });
// -->
</script>
<script type="text/javascript">
// <!--
window.addEvent('domready', function() {
SqueezeBox.initialize({});
$$('a.modal').each(function(el) {
el.addEvent('click', function(e) {
new Event(e).stop();
SqueezeBox.fromElement(el);
});
});
});
// -->
</script>
|