LaunchMyApp.js 244 B

123456789
  1. (function () {
  2. function activatedHandler(e) {
  3. if (typeof handleOpenURL === "function" && e.uri) {
  4. handleOpenURL(e.uri.rawUri);
  5. }
  6. };
  7. document.addEventListener("activated", activatedHandler, false);
  8. }());