|
@@ -80,4 +80,8 @@ function addLinkClickEvent() {
|
|
function adjustHeight() {
|
|
function adjustHeight() {
|
|
var ht = window.innerHeight;
|
|
var ht = window.innerHeight;
|
|
$(".content").height(ht - 145 + "px");
|
|
$(".content").height(ht - 145 + "px");
|
|
-}
|
|
|
|
|
|
+}
|
|
|
|
+$(window).on('resize', function(){
|
|
|
|
+ adjustHeight()
|
|
|
|
+})
|
|
|
|
+
|