mail/src/install.html

18 lines
558 B
HTML

<html>
<body>
<p>Packaged app installation page</p>
<script>
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>