LaunchMyApp.js 339 B

123456789101112
  1. (function () {
  2. function activatedHandlerWinUI(e) {
  3. if (typeof handleOpenURL == 'function' && e.uri) {
  4. handleOpenURL(e.uri.rawUri);
  5. }
  6. };
  7. if (typeof Windows != 'undefined') {
  8. var wui = Windows.UI.WebUI.WebUIApplication;
  9. wui.addEventListener("activated", activatedHandlerWinUI, false);
  10. }
  11. }());