Skip to content

Instantly share code, notes, and snippets.

@KaiserEMP
Last active July 9, 2019 13:05
Show Gist options
  • Select an option

  • Save KaiserEMP/c940f54d99c469a38890bd54332e251b to your computer and use it in GitHub Desktop.

Select an option

Save KaiserEMP/c940f54d99c469a38890bd54332e251b to your computer and use it in GitHub Desktop.
function applePie() {
return ( navigator.userAgent.match(/(iPhone|iPod|iPad)/i) );
}
$('.fancy-overlay').fancybox({
your: 'settings',
afterShow: function() {
if ( applePie() ) { $('body').css({'position': 'fixed'}); }
},
afterClose: function() {
if ( applePie() ) { $('body').css({'position': ''}); }
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment