1
0
mirror of https://github.com/moparisthebest/mail synced 2024-08-13 16:43:47 -04:00
mail/src/install.html

18 lines
558 B
HTML
Raw Normal View History

<html>
<body>
<p>Packaged app installation page</p>
<script>
2013-06-23 09:30:19 -04:00
var base = window.location.href.split("#")[0]; // WORKAROUND: remove hash from url
base = base.replace("/install.html",""); // WORKAROUND: remove index.html
var manifestUrl = base + '/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>