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
3af4cef7
Commit
3af4cef7
authored
Apr 12, 2021
by
Lee Munkyeong
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'bugFix/#482_ルームタイプのメモライズ' into 'release_sp3'
#482対応。 See merge request
!34
parents
7ed29d07
545011d3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
2 deletions
+11
-2
public_new/chat.html
+1
-1
public_new/js/chat-ui.js
+10
-1
No files found.
public_new/chat.html
View file @
3af4cef7
...
...
@@ -53,7 +53,7 @@
</div>
<!-- タブ -->
<div
class=
"content tabs"
>
<input
id=
"tabGroup"
type=
"radio"
name=
"tab_item"
checked
>
<input
id=
"tabGroup"
type=
"radio"
name=
"tab_item"
>
<label
class=
"tab_item"
for=
"tabGroup"
>
グループ
</label>
<input
id=
"tabDM"
type=
"radio"
name=
"tab_item"
>
<label
class=
"tab_item"
for=
"tabDM"
>
DM
</label>
...
...
public_new/js/chat-ui.js
View file @
3af4cef7
...
...
@@ -1014,8 +1014,17 @@ CHAT_UI.refreshContactScreen = function() {
}
CHAT_UI
.
refreshRoomList
=
function
(
roomType
)
{
var
beforeRoomType
;
if
(
typeof
(
android
)
!=
"undefined"
)
{
beforeRoomType
=
android
.
getBeforeRoomType
();
}
if
(
beforeRoomType
!=
null
)
{
roomType
=
beforeRoomType
;
if
(
typeof
(
android
)
!=
"undefined"
)
{
android
.
clearBeforeRoomType
();
}
}
CHAT_UI
.
showLoadingIndicator
();
console
.
log
(
'START'
);
if
(
roomType
==
chatRoomType
.
DM
)
{
$
(
'#tabDM'
).
prop
(
'checked'
,
true
);
}
else
{
...
...
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