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 was 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.
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.