mirror of
https://framagit.org/fiat-tux/hat-softwares/lutim.git
synced 2026-06-26 21:11:53 +02:00
hide app button already install
add js code to hide app install button when app already install
This commit is contained in:
@@ -74,6 +74,15 @@
|
||||
alert('Install failed, error: ' + this.error.name);
|
||||
};
|
||||
});
|
||||
//hide app install button when app already install
|
||||
var button = document.getElementById('install-app');
|
||||
var installCheck = navigator.mozApps.checkInstalled(manifestUrl);
|
||||
installCheck.onsuccess = function() {
|
||||
if(installCheck.result) {
|
||||
button.style.display = "none";
|
||||
}
|
||||
|
||||
//Hide app install button on the webapp
|
||||
if (navigator.mozApps) {
|
||||
var checkIfInstalled = navigator.mozApps.getSelf();
|
||||
checkIfInstalled.onsuccess = function () {
|
||||
@@ -86,6 +95,7 @@
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
% end
|
||||
<%= content %>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user