Following on from this discussion:
Pause Flexslider when overlay is open
PrettyPhoto overlay is called div.pp_overlay but when I amend the code to account for this it ignores it.
start: function(slider) {
$('div.pp_overlay').hover(function() {
slider.pause();
});
$('div.pp_overlay').click( function() {
slider.resume();
});
}
});
Am I missing something?