Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
design
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abookCheck
design
Commits
540481eb
Commit
540481eb
authored
3 years ago
by
Takatoshi Miura
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug #44987【Check iOS 1.4.2】カテゴリを表示した状態で端末を縦から横に傾けると、下側の項目をスクロールして確認できない場合がある
parent
23a816fb
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletions
+3
-1
app/script/check.js
+3
-1
No files found.
app/script/check.js
View file @
540481eb
...
@@ -484,12 +484,14 @@ CHK.initOperationList = function() {
...
@@ -484,12 +484,14 @@ CHK.initOperationList = function() {
* カテゴリー表示領域の高さ調整
* カテゴリー表示領域の高さ調整
*/
*/
CHK
.
setCategoryHeight
=
function
()
{
CHK
.
setCategoryHeight
=
function
()
{
//カテゴリー高さ固定
// 画面回転時に、回転完了前に計算される場合があるためウェイトを入れる
setTimeout
(
function
(){
CATEGORY_HEIGHT
=
$
(
'footer'
).
offset
().
top
-
$
(
'#category-menu'
).
offset
().
top
;
CATEGORY_HEIGHT
=
$
(
'footer'
).
offset
().
top
-
$
(
'#category-menu'
).
offset
().
top
;
console
.
log
(
CATEGORY_HEIGHT
);
console
.
log
(
CATEGORY_HEIGHT
);
$
(
"#category-menu"
).
css
(
"overflow"
,
"scroll"
);
$
(
"#category-menu"
).
css
(
"overflow"
,
"scroll"
);
$
(
'#category-menu'
).
height
(
CATEGORY_HEIGHT
);
$
(
'#category-menu'
).
height
(
CATEGORY_HEIGHT
);
$
(
'#overlayDiv'
).
height
(
CATEGORY_HEIGHT
);
$
(
'#overlayDiv'
).
height
(
CATEGORY_HEIGHT
);
},
100
);
}
}
/**
/**
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment