Advertisement
borlabs

Interval

Jun 13th, 2018
397
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var requireAvailable = setInterval(checkMailChimpLoaded, 125);
  2.  
  3. function checkMailChimpLoaded ()
  4. {
  5.     if (typeof require !== "undefined") {
  6.         require(["mojo/signup-forms/Loader"], function(L) { L.start({"baseUrl":"mc.us17.list-manage.com","uuid":"7e0c3a0ea82288570dd89c5e3","lid":"f1393160ee"}) });
  7.        
  8.         clearInterval(requireAvailable);
  9.     }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement