Commit 3af4cef7 by Lee Munkyeong

Merge branch 'bugFix/#482_ルームタイプのメモライズ' into 'release_sp3'

#482対応。

See merge request !34
parents 7ed29d07 545011d3
......@@ -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>
......
......@@ -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 {
......
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