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
30b36fe2
Commit
30b36fe2
authored
Apr 12, 2021
by
Takatoshi Miura
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'origin/bugfix#494' into 'release_sp3'
修正漏れ See merge request
!39
parents
89faf50a
2fa6b52f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
public_new/archive.html
+1
-1
public_new/archive_detail.html
+1
-1
public_new/js/chat-ui.js
+1
-1
No files found.
public_new/archive.html
View file @
30b36fe2
...
...
@@ -18,7 +18,7 @@
<script>
window
.
addEventListener
(
'DOMContentLoaded'
,
function
()
{
CHAT_
DB
.
getArchiveList
();
CHAT_
UI
.
refreshArchiveScreen
();
});
</script>
</head>
...
...
public_new/archive_detail.html
View file @
30b36fe2
...
...
@@ -22,7 +22,7 @@
var
urlSearch
=
location
.
search
.
substring
(
1
).
split
(
'&'
);
var
kv
=
urlSearch
[
0
].
split
(
'='
);
urlPrm
[
kv
[
0
]]
=
kv
[
1
];
CHAT_
DB
.
getArchiveDetail
(
urlPrm
.
archiveId
);
CHAT_
UI
.
refreshArchiveDetailScreen
(
urlPrm
.
archiveId
);
});
</script>
</head>
...
...
public_new/js/chat-ui.js
View file @
30b36fe2
...
...
@@ -1390,7 +1390,7 @@ CHAT_UI.refreshAllGroupSearch = function(paramGroupId) {
if
(
typeof
(
android
)
!=
"undefined"
)
{
android
.
updateGroupInfo
(
groupId
);
}
else
{
webkit
.
messageHandlers
.
updateGroupInfo
.
postMessage
(
{
groupId
}
);
webkit
.
messageHandlers
.
updateGroupInfo
.
postMessage
(
groupId
);
}
}
...
...
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