-
Notifications
You must be signed in to change notification settings - Fork 1
Closed
Labels
Description
After adding Jatt to the AnythingSlider plugin I'm now getting an error of 404 (Not Found) error in jquery.jatt.js:293.
"cacheImage.src = preloads[i];"
This is how I'm loading it:
$('#slider').anythingSlider({
theme : 'metallic',
expand : true,
buildStartStop : false,
autoPlay : false,
showMultiple : false,
toggleArrows : true,
toggleControls : false,
enableKeyboard : true,
navigationFormatter : function(i, panel){
return {
'title' : [panel.find('h3').text(), panel.find('h3').text(), panel.find('h3').text(), panel.find('h3').text(), panel.find('h3').text()][i - 1],
'html' : '<a class="panel' + i + '" href="#"><span>' + i + '</span></a>'
};
}
});
$.jatt();Any idea what the issue is here?