Hello Phill,
the problem is related to the script, there a comma that shouldn't be there.
$.each({
swipeevent: "swipeall", <------ You need to remove this comma
}, function(event, sourceEvent){
$.event.special[event] = {
setup: function(){
$(this).bind(sourceEvent, $.noop);
}
};
});
Final code:
$.each({
swipeevent: "swipeall"
}, function(event, sourceEvent){
$.event.special[event] = {
setup: function(){
$(this).bind(sourceEvent, $.noop);
}
};
});
In this way the script is succesfully loaded and it start the Swf file called in loadPrContent();
Regards
Angelo