Theme based on season / time of day.
[labelle.git] / acnl-outfit.js
index d9ef316..45849d1 100644 (file)
@@ -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');
@@ -142,6 +151,21 @@ function update () {
     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();
+            }
+        });
+    }
+});