1
0
mirror of https://github.com/moparisthebest/mail synced 2024-11-25 10:22:18 -05:00
mail/install.html
2013-03-28 21:52:48 +01:00

16 lines
452 B
HTML

<html>
<body>
<p>Packaged app installation page</p>
<script>
// This URL must be a full url.
var manifestUrl = 'http://tanx.github.com/html5-mail/manifest.webapp';
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>