|
1 <!DOCTYPE HTML> |
|
2 <html> |
|
3 <head> |
|
4 <meta charset="utf-8"> |
|
5 <title>Cross Origin Helper</title> |
|
6 </head> |
|
7 <body> |
|
8 <script type="application/javascript"> |
|
9 |
|
10 window.addEventListener("message", function onMessage(event) { |
|
11 window.removeEventListener("message", onMessage, false); |
|
12 |
|
13 var request = navigator.mozApps.installPackage(event.data); |
|
14 |
|
15 request.onerror = function() { |
|
16 parent.postMessage("Error: " + this.error.name, "*"); |
|
17 }; |
|
18 |
|
19 request.onsuccess = function() { |
|
20 parent.postMessage("Application installed", "*"); |
|
21 }; |
|
22 }, false); |
|
23 |
|
24 </script> |
|
25 </body> |
|
26 </html> |