mirror of
https://github.com/moparisthebest/mail
synced 2025-02-12 13:10:13 -05:00
18 lines
558 B
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> |