I need to create a javascript function called "handleOpenUrl(url)" that will be called from a Cordova plugin (https://github.com/EddyVerbruggen/Custom-URL-scheme) for a hand off from a mobile browser. If I create the function inside my index.html, it is called successfully. The challenge is how do I move the execution into my GWT module?
My ideas are... 1: Somehow create a GWT method that is recognized in the global js namespace as "handleOpenUrl"? I know method names get compiled out, so I am not sure how I would accomplish this. 2. Leave the handleOpenUrl inside the index.html, but somehow call a GWT method from that? Any thoughts/ideas would be much appreciated. -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/google-web-toolkit. For more options, visit https://groups.google.com/d/optout.
