Commit eb1edc39 by Kim Peace

Fixed capture svg file path

parent 9ecee0d3
......@@ -150,6 +150,10 @@ CoviewBridge.bindMessageEvent = function () {
});
}
break;
case "IceCandidateEvent": // do nothing for ice condidate event
break;
case "HeartbeatResponse": // do nothing for heartbeat response
break;
default:
console.debug("Unrecognized api", json);
break;
......@@ -171,7 +175,8 @@ CollaborationFeature.didReceiveLoginResponseMessage = async function () {
NativeBridgeDelegate.startContentView();
} else if (isHost) {
globalUserInfo.meetingID = NativeBridgeDataSource.createContentView();
if (globalUserInfo.meetingID == "-1") { //会議室作成失敗
if (globalUserInfo.meetingID == "-1") {
//会議室作成失敗
CoviewBridge.finishCollaboration();
return;
}
......@@ -197,8 +202,6 @@ CollaborationFeature.didReceiveLoginResponseMessage = async function () {
break;
}
CollaborationUI.moveToVideoShareArea();
};
......
......@@ -7,7 +7,7 @@
</div>
<div class="modal-body">
<div class="img_wrap">
<img src="img/capture.svg" alt="キャプチャ画像">
<img src="icon/icon_collabo_capture.svg" alt="キャプチャ画像">
</div>
<p>filename.jpg</p>
</div>
......
......@@ -7,7 +7,7 @@
</div>
<div class="modal-body">
<div class="img_wrap">
<img src="img/capture.svg" alt="キャプチャ画像">
<img src="icon/icon_collabo_capture.svg" alt="キャプチャ画像">
</div>
<p>filename.jpg</p>
</div>
......
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