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