check mobile device file changes

This commit is contained in:
Jatin_Chugh
2022-12-23 09:42:48 +05:30
parent 834c129c8d
commit 250e498b56

View File

@@ -21,9 +21,6 @@
let url = window.location.href; let url = window.location.href;
let app = { let app = {
launchApp: function() { launchApp: function() {
setTimeout(function() {
window.location.href = "https://itunes.apple.com/us/app/appname/appid";
}, 25);
window.location.href = "iosamw://"+url; //which page to open(now from mobile, check its authorization) window.location.href = "iosamw://"+url; //which page to open(now from mobile, check its authorization)
}, },
openWebApp: function() { openWebApp: function() {
@@ -38,7 +35,7 @@
// setTimeout(this.openWebApp, 500); // setTimeout(this.openWebApp, 500);
}, },
openWebApp: function() { openWebApp: function() {
window.location.href = "https://play.google.com/store/apps/details?id=package"; window.location.href = "https://play.google.com/store/apps/details?id=packagename";
} }
}; };
app.launchApp(); app.launchApp();