mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
d4e9c05829
--HG-- extra : rebase_source : 777580f0a22bfb3d9d447097b0f4a379f2b7416b
18 lines
303 B
HTML
18 lines
303 B
HTML
<html>
|
|
<head>
|
|
<script type="text/javascript">
|
|
addEventListener('load', function(e) {
|
|
navigator.mozApps.getSelf().onsuccess = function onGetSelf() {
|
|
if (this.result) {
|
|
alert('app');
|
|
} else {
|
|
alert('notapp');
|
|
}
|
|
};
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
</body>
|
|
</html>
|