Guest User

Untitled

a guest
Feb 23rd, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. var isIOS = ( navigator.userAgent.match(/(iPad|iPhone|iPod)/g) ? true : false );
  2.  
  3. function showFacebookShare(control)
  4. {
  5. if (!isIOS)
  6. {
  7. window.open(control.href, '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=500,width=700');
  8. return false;
  9. }
  10. else
  11. {
  12. return true;
  13. }
  14. }
Add Comment
Please, Sign In to add comment