Commit fa0ee9a8 by yuichiro ogawa

portをURLで直接指定しないよう修正

parent 8d0478fe
const SERVER_URL = CHAT_SERVER_URL + ':' + CHAT_SERVER_PORT;
const socket = io(SERVER_URL);
const SERVER_URL = CHAT_SERVER_URL;
const socket = io(CHAT_SERVER_URL);
// 招待するメンバーを保存する変数
var globalSelectedUserList = new Array();
......
var CHAT_SERVER_URL = "Node Server Address";
var CHAT_SERVER_PORT = 3000;
var CHAT_SERVER_URL = "http://abook190.abook.bz";
......@@ -117,6 +117,9 @@ public class ChatWebviewActivity extends ParentWebViewActivity {
mChatWebView.getSettings().setJavaScriptEnabled(true); //Javascriptを有効にする。
// mChatWebView.setWebContentsDebuggingEnabled(true);
if (Logger.isDebugEnabled()) {
mChatWebView.setWebContentsDebuggingEnabled(true); //デバッグモード(chromeからinspect可)
}
// 最後のチャットのルーム名
String lastRoomName = PreferenceUtil.getUserPref(getApplicationContext(), AppDefType.UserPrefKey.CHAT_LAST_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