Advertisement
borlabs

IOAM Loaded

Jan 3rd, 2020
384
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var ioamLoaded = setInterval(checkIOAMLoaded, 125);
  2.  
  3. function checkIOAMLoaded ()
  4. {
  5.     if (typeof iom !== "undefined") {
  6.        
  7.         // DEIN JS CODE
  8.         iom.c(iam_data);
  9.        
  10.         clearInterval(ioamLoaded);
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement