Results 5 comments of Vesper

same as hari, I put the handleOpenUrl in main.js, but I don't know how to trigger it to get the url. Is there anything wrong with the function or the...

@hari5004 I have solved this problem, and here is my script: ``` bash window.handleOpenURL = function (url) { setTimeout(_ => { window.alert(url) }) } ``` I add this to my...

@evinkuraga This is also a solution. Actually I may use: ``` window.handleOpenURL = function (url) { window.location.hash = url.slice(7) // your URLscheme.length } ``` And it's too early, I don't...

@harishmahajan try this: ``` bash window.handleOpenURL = function (url) { window.location.hash = url.slice(7) // your URLscheme.length } ```