Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
chat_webview
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
abookCommunication
chat_webview
Commits
f01b554d
Commit
f01b554d
authored
Apr 15, 2021
by
Kim Peace
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'feature/go_home' into 'release_sp3'
Feature/go home See merge request
!49
parents
83c48a91
908b589e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
public_new/archive.html
+1
-1
public_new/js/common.js
+5
-1
No files found.
public_new/archive.html
View file @
f01b554d
...
@@ -30,7 +30,7 @@
...
@@ -30,7 +30,7 @@
<div
class=
"col-4 pr-0"
>
<div
class=
"col-4 pr-0"
>
<div
class=
"nav-item"
>
<div
class=
"nav-item"
>
<div
class=
"nav_prev"
>
<div
class=
"nav_prev"
>
<a
href=
"#"
><span>
ホーム
</span></a>
<a
href=
"#"
class=
"home_btn"
><span>
ホーム
</span></a>
</div>
</div>
</div>
</div>
</div>
</div>
...
...
public_new/js/common.js
View file @
f01b554d
...
@@ -5,7 +5,11 @@ $('.category').on('click', function() {
...
@@ -5,7 +5,11 @@ $('.category').on('click', function() {
});
});
$
(
'.home_btn'
).
on
(
'click'
,
function
()
{
$
(
'.home_btn'
).
on
(
'click'
,
function
()
{
android
.
goHome
();
if
(
CHAT_UTIL
.
isAndroid
())
{
android
.
goHome
();
}
else
if
(
CHAT_UTIL
.
isIOS
())
{
webkit
.
messageHandlers
.
goHome
.
postMessage
({});
}
});
});
$
(
function
()
{
$
(
function
()
{
var
h
=
$
(
window
).
height
();
//画面の高さを取得
var
h
=
$
(
window
).
height
();
//画面の高さを取得
...
...
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