Commit 50a655d1 by Takatoshi Miura

#43158_boad-area_PIPの状態でボード協業に遷移するとボード領域が半分になるバグを修正

parent cebd3348
......@@ -133,9 +133,14 @@ document.addEventListener("DOMContentLoaded", function () {
if (joinCollaborationType == COLLABORATION_TYPE.DOCUMENT) {
if (CHAT_UTIL.isIOS()) {
webkit.messageHandlers.exitMeetingRoom.postMessage({});
webkit.messageHandlers.finishPipMode.postMessage({});
} else if (CHAT_UTIL.isAndroid()) {
android.exitMeetingRoom();
android.finishPip();
mChatWebView.loadUrl("javascript:$('.pip_indicator').addClass('none');");
}
await new Promise(done => setTimeout(() => done(), 500));
updateCanvasSize();
}
if (
......
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