Browse Source

updated favicon

tobychui 3 years ago
parent
commit
b93b439b64

BIN
documents/publication/favicon.png


BIN
documents/publication/favicon.psd


BIN
web/favicon.ico


BIN
web/img/public/pwa/192.png


BIN
web/img/public/pwa/192.psd


BIN
web/img/public/pwa/512.png


BIN
web/img/public/pwa/512.psd


+ 12 - 0
web/login.system

@@ -285,6 +285,18 @@
         }
 
         $(".thisyear").text(new Date().getFullYear());
+
+        function updateRenderElements(){
+            if (window.innerHeight < 520){
+                $(".bottombar").hide();
+            }else{
+                $(".bottombar").show();
+            }
+        }
+        updateRenderElements();
+        $(window).on("resize", function(){
+            updateRenderElements();
+        });
     </script>
     </body>
 </html>