UNPKG

cordova-plugin-custom-url-handler

Version:

Open your app using a custom URL, such as `myapp://`. You can also include a path and pass parameters like this: `myapp://somepath?foo=bar`.

12 lines (8 loc) 238 B
(function () { "use strict"; function onDeviceReady() { cordova.exec(null, null, 'CustomUrlHandler', 'noop', []); } document.addEventListener('deviceready', onDeviceReady, false); module.exports = {}; }());