Commit 8315bf03 by Lee JaeWon

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

parent 53cc1fda
......@@ -2924,12 +2924,12 @@ CHK.createOperationList = function(operationList, isSearched = false) {
operationTR.append(iconTd);
$(".table tbody").append(operationTR);
if(displayHeightForCategry == 0){
var baseHeight = window.innerHeight;
$(".table tbody").height(baseHeight - $("body").height() - $("footer").height());
} else {
$(".table tbody").height(displayHeightForCategry);
}
}
if(displayHeightForCategry == 0) {
var baseHeight = window.innerHeight;
$('#operationTable').height(baseHeight - $("body").height() - $("footer").height());
} else {
$('#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