Guest User

Untitled

a guest
Oct 22nd, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. this.isMobile = {
  2. Android: function () {
  3. return navigator.userAgent.match(/Android/i);
  4. },
  5. BlackBerry: function () {
  6. return navigator.userAgent.match(/BlackBerry|PlayBook|BB10/i);
  7. },
  8. iOS: function () {
  9. return navigator.userAgent.match(/iPhone|iPad|iPod/i);
  10. },
  11. Opera: function () {
  12. return navigator.userAgent.match(/Opera Mini/i);
  13. },
  14. Windows: function () {
  15. return navigator.userAgent.match(/IEMobile/i);
  16. },
  17. any: function () {
  18. return this.Android() || this.BlackBerry() || this.iOS() || this.Opera() || this.Windows();
  19. }
  20. };
Add Comment
Please, Sign In to add comment