mirror of
https://github.com/moparisthebest/mail
synced 2025-01-30 22:50:17 -05:00
16 lines
502 B
HTML
16 lines
502 B
HTML
<html>
|
|
<body>
|
|
<p>Packaged app installation page</p>
|
|
<script>
|
|
// This URL must be a full url.
|
|
var manifestUrl = 'http://localhost:8080/manifest.webapp'; // 'http://tanx.gihthub.com/html5-mail/src/package.manifest';
|
|
var req = navigator.mozApps.install(manifestUrl);
|
|
req.onsuccess = function() {
|
|
alert('Success: ' + this.result.origin);
|
|
};
|
|
req.onerror = function() {
|
|
alert('Error: ' + this.error.name);
|
|
};
|
|
</script>
|
|
</body>
|
|
</html> |