Commit 41a2370a by Kim Peace

Merge branch 'develop' into debug/console_logs

parents 053fd3bb 6d49b7f4
......@@ -562,7 +562,7 @@
background-repeat: no-repeat;
background-position: center;
background-size: contain;
width: 30px;
width: 50px;
height: 30px;
margin: 0 10px 6px 10px;
}
......@@ -740,6 +740,7 @@
}
#collabo_footer .txt {
font-size: 12px;
line-height: .9rem;
}
@media screen and (max-width: 768px) {
......@@ -986,4 +987,8 @@ input[name="tab_item"] {
.room_left {
max-width: 75%;
}
/* フッターアイコン */
.t-icon {
width: 30px;
}
}
......@@ -11,10 +11,21 @@ CoviewBridge.bindReadyEvent = function () {
// add login ID if not exist
CoviewBridge.addLoginID(globalUserInfo.loginId);
CoviewBridge.loginCoview();
});
};
CoviewBridge.loginCoview = function () {
try {
coview_api.Login(globalUserInfo.loginId);
} catch (err) {
setTimeout(() => {
CoviewBridge.loginCoview();
}, 1000);
return;
}
CollaborationUI.updateScreen(globalUserInfo.collaborationType);
NativeBridgeDelegate.setHostRequestFlg(HostRequestFlag.DONE);
});
};
CoviewBridge.bindFermiWebSocketOpenned = function () {
......
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