X-Git-Url: https://git.yukkurigames.com/?p=labelle.git;a=blobdiff_plain;f=acnl-outfit.js;h=a09d6451c23affd8bf471fc6040c64d9ee2b2a88;hp=d9ef316eb6c98968adf9564564d768ce3b6247bd;hb=HEAD;hpb=2bc0c17a6b3af18a2b9f27118940531747e64321 diff --git a/acnl-outfit.js b/acnl-outfit.js index d9ef316..a09d645 100644 --- a/acnl-outfit.js +++ b/acnl-outfit.js @@ -124,6 +124,15 @@ function litanize (names, link) { return names.join(names.length == 2 ? " " : ", "); } +function updateTime () { + var date = new Date(); + document.documentElement.className = "month" + date.getMonth() + document.body.className = "hour" + date.getHours(); + if (window.navigator.standalone) + document.body.className += " standalone"; +} +setInterval(updateTime, 20 * 60 * 1000); + function update () { var o = outfit(); var wearing = document.getElementById('wearing'); @@ -137,11 +146,26 @@ function update () { "Labelle suggested ", "I'll wear "]) + litanize(o, false) + ".")); - buttons = document.getElementById("buttons"); + var buttons = document.getElementById("buttons"); buttons.className = ""; setTimeout(function () { buttons.className = "open"; }, 300); - - + updateTime(); } + +window.addEventListener("DOMContentLoaded", update); + +window.addEventListener('load', function () { + if (typeof FastClick !== "undefined") + FastClick.attach(document.body, { tapDelay: 50 }); + + if (applicationCache && applicationCache.status) { + applicationCache.update(); + applicationCache.addEventListener('updateready', function () { + if (applicationCache.status === applicationCache.UPDATEREADY) { + applicationCache.swapCache(); + } + }); + } +});