Advertisement
Guest User

Untitled

a guest
Dec 8th, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. var wait = setInterval(function () {
  2. if ( someObj !== undefined ) {
  3. clearInterval(wait);
  4. console.log('loaded')
  5. } else {
  6. console.log('waiting')
  7. }
  8. }, 100)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement