Guest User

Untitled

a guest
Feb 25th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. var supports_autoplay = function(cb) {
  2.  
  3. var r = [];
  4.  
  5. // try to play video
  6. var v = document.createElement("video");
  7. v.paused = true;
  8. var vp = "play" in v && v.play();
  9. r.video = !v.paused || "Promise" in window && vp instanceof Promise;
  10.  
  11. // try to play audio
  12. var a = document.createElement("audio");
  13. a.paused = true;
  14. "play" in a && a.play();
  15. r.audio = !a.paused;
  16.  
  17. cb(r);
  18.  
  19. };
Add Comment
Please, Sign In to add comment