summaryrefslogtreecommitdiff
path: root/StoneIsland/plugins/cordova-plugin-customurlscheme/www/windows/LaunchMyApp.js
blob: a70d5e9434b323df1a96ba290ec4354d2087866a (plain)
1
2
3
4
5
6
7
8
9
10
(function () {
	function activatedHandler(e) {
		if (typeof handleOpenURL == 'function' && e.uri) {
			handleOpenURL(e.uri.rawUri);
		}
	};
	
	var wui = Windows.UI.WebUI.WebUIApplication;
	wui.addEventListener("activated", activatedHandler, false);
}());