Re: Is there a way to wait for another plugin to initialize

2016-06-21 Thread Simon MacDonald
Whelp, most plugins have a success callback that is invoked when the initialization is finished. You can start the second plugin from the success of the first for a quick win. Or you could create a custom event: https://developer.mozilla.org/en-US/docs/Web/Guide/Events/Creating_and_triggering_eve

Is there a way to wait for another plugin to initialize

2016-06-20 Thread Philipp Kursawe
I have a plugin that depends on another plugin being initialized first. Does cordova already provide a documented way of doing that through channels? Coming from OSGi I'm thinking of something non-blocking like Plugin B is only started if Plugin has been started.