Browse Source

adjust page min-height when print page

yusuketk 7 years ago
parent
commit
08d6d75874
1 changed files with 5 additions and 0 deletions
  1. 5 0
      src/client/js/legacy/crowi.js

+ 5 - 0
src/client/js/legacy/crowi.js

@@ -846,4 +846,9 @@ window.addEventListener('keydown', (event) => {
       }
       break;
   }
+
 });
+
+window.onbeforeprint = function () {
+  $("#page-wrapper").css("min-height", "0px");
+};