mam tą samą aplikację na dwóch serwrach na tym serwrze działa poprawnie:
http://test.misiu.nazwa.pl/countertops
na tomiast na tym zdjęcia się rozsypują
http://www.thejamesoreillygroup.com/gallery
Wiecie dlaczego tak jest?
CODE
<script type="text/javascript">
Galleria.loadTheme('galleria/themes/classic/galleria.classic.min.js');
// Initialize Galleria
jQuery('#galleria').galleria({
height: 500,
width: 700,
transition: 'slide',
thumbnails: false,
autoplay: 3000,
showImagenav: true,
transitionSpeed: 500,
pauseOnInteraction: true,
initialTransition: false,
preload: 3,
extend: function() {
var gallery = this; // "this" is the gallery instance
$('#galleria').click(function() {
gallery.playToggle(); // call the play method
});
}
});
</script>