Commit 8315bf03 by Lee JaeWon

カテゴリー一覧が画面高さ調整

parent 53cc1fda
...@@ -2924,12 +2924,12 @@ CHK.createOperationList = function(operationList, isSearched = false) { ...@@ -2924,12 +2924,12 @@ CHK.createOperationList = function(operationList, isSearched = false) {
operationTR.append(iconTd); operationTR.append(iconTd);
$(".table tbody").append(operationTR); $(".table tbody").append(operationTR);
if(displayHeightForCategry == 0){ }
if(displayHeightForCategry == 0) {
var baseHeight = window.innerHeight; var baseHeight = window.innerHeight;
$(".table tbody").height(baseHeight - $("body").height() - $("footer").height()); $('#operationTable').height(baseHeight - $("body").height() - $("footer").height());
} else { } else {
$(".table tbody").height(displayHeightForCategry); $('#operationTable').height(displayHeightForCategry);
}
} }
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment