You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 1, 2018. It is now read-only.
As stated in #3 - we need a module, that does something like this:
functiononDeviceReady(){console.log('deviceready');// set handler for the eventuniversalLinks.on('event_name',onULOpen);};functiononULOpen(event){// handle the event}
Internally, it will store the events, received from the native side; and then universalLinks.on(...) is called - send them to the callback. Basically, you are subscribing to the event through the plugins module.
The text was updated successfully, but these errors were encountered:
This would definately be very useful! I am now working around the timing issue by setting event details in localstorage from index.html and then acting on it when the app has finished loading.
As stated in #3 - we need a module, that does something like this:
Internally, it will store the events, received from the native side; and then
universalLinks.on(...)
is called - send them to the callback. Basically, you are subscribing to the event through the plugins module.The text was updated successfully, but these errors were encountered: