I have a situation where my app needs to enter a certain state only after a vendor library has run it's own proprietary script loading mechanism. Basically, I need to listen for the following:
document.on('mp_ready', function() {
//resolve
});
What is the proper way to accomplish this?
Thanks!
I have a situation where my app needs to enter a certain state only after a vendor library has run it's own proprietary script loading mechanism. Basically, I need to listen for the following:
What is the proper way to accomplish this?
Thanks!