Commit 540481eb by Takatoshi Miura

Bug #44987【Check iOS 1.4.2】カテゴリを表示した状態で端末を縦から横に傾けると、下側の項目をスクロールして確認できない場合がある

parent 23a816fb
......@@ -484,12 +484,14 @@ CHK.initOperationList = function() {
* カテゴリー表示領域の高さ調整
*/
CHK.setCategoryHeight = function() {
//カテゴリー高さ固定
CATEGORY_HEIGHT = $('footer').offset().top - $('#category-menu').offset().top;
console.log(CATEGORY_HEIGHT);
$("#category-menu").css("overflow", "scroll");
$('#category-menu').height(CATEGORY_HEIGHT);
$('#overlayDiv').height(CATEGORY_HEIGHT);
// 画面回転時に、回転完了前に計算される場合があるためウェイトを入れる
setTimeout(function(){
CATEGORY_HEIGHT = $('footer').offset().top - $('#category-menu').offset().top;
console.log(CATEGORY_HEIGHT);
$("#category-menu").css("overflow", "scroll");
$('#category-menu').height(CATEGORY_HEIGHT);
$('#overlayDiv').height(CATEGORY_HEIGHT);
}, 100);
}
/**
......
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