// // If mobile device show app message. // Only show if it has been 2 days since we last showed it and skipped 5 times. // // If we are viewing the website from the app then it is pointless to show this message. var fromApp; if (window.location.search && window.location.search.indexOf("isFromTheApp") !== -1) fromApp=true; if (window.navigator.userAgent.match(/iPhone|Android|iPod|iPad/) && !fromApp){ var cnt = localStorage.getItem("appMsgSkipCnt"); var last = localStorage.getItem("appMsgLastShown"); last = (last) ? new Date(parseInt(last, 10)).getTime() : 0; var today = new Date(); //Been 2 days since last visit? if (today.getTime() - last > 2*24*60*60*1000){ localStorage.setItem("appMsgLastShown",''+today.getTime()); if (confirm("We have a free mobile app! Click OK to download")) window.location="https://mobileinventor.com/v5/library/getAppLink.php?dl=1&appname=Liberty_All_Stars&laid="; } }