Commit 3ec6bfc8 by Lee Munkyeong

インデント修正

parent 9312b95f
...@@ -1162,9 +1162,9 @@ CHAT_UI.joinRoom = function(roomId,roomName) { ...@@ -1162,9 +1162,9 @@ CHAT_UI.joinRoom = function(roomId,roomName) {
//native側に入場対象のroomId,roomNameを保存。(ルーム詳細画面初期化の時に使用。) //native側に入場対象のroomId,roomNameを保存。(ルーム詳細画面初期化の時に使用。)
if (typeof(android) != "undefined") { if (typeof(android) != "undefined") {
try { try {
android.joinRoom(roomId,roomName); android.joinRoom(roomId,roomName);
} catch { } catch {
alert(getLocalizedString('err_not_exist_room')); alert(getLocalizedString('err_not_exist_room'));
} }
} else { } else {
webkit.messageHandlers.joinRoom.postMessage({"roomId": roomId, "roomName": roomName}); webkit.messageHandlers.joinRoom.postMessage({"roomId": roomId, "roomName": roomName});
......
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