Commit bd686d1e by Lee Munkyeong

Merge branch 'develop' of gitlab.agentec.jp:abookCommunication/chat_webview into…

Merge branch 'develop' of gitlab.agentec.jp:abookCommunication/chat_webview into features/release_sp3_collaboration_document

# Conflicts:
#	public_new/js/share.js
parents 8bda2e4c 4f062177
......@@ -124,12 +124,10 @@
</a>
</div>
<!--リリース後開発予定-->
<!--<div class="footer_item">
<a href="collaboration_whiteboard.html">
<img src="icon/icon_whiteboad_gray.png" alt="ホワイトボードアイコン">
<div class="footer_item">
<img src="icon/icon_whiteboard_gray.png" alt="ホワイトボードアイコン" onclick="alert(getLocalizedString('notify_not_released'));">
<p>ボード</p>
</a>
</div>-->
</div>
</div>
</div>
</div>
......
......@@ -30,7 +30,7 @@
<div class="item">
<a href="collaboration_whiteboard.html" class="d-flex flex-column align-items-center">
<div class="img_wrap">
<img src="icon/icon_collabo_whiteboad.png" alt="落書き">
<img src="icon/icon_collabo_whiteboard.png" alt="落書き">
</div>
<span>落書き</span>
</a>
......
......@@ -30,7 +30,7 @@
<div class="item">
<a href="collaboration_whiteboard.html" class="d-flex flex-column align-items-center">
<div class="img_wrap">
<img src="icon/icon_collabo_whiteboad.png" alt="落書き">
<img src="icon/icon_collabo_whiteboard.png" alt="落書き">
</div>
<span>落書き</span>
</a>
......
......@@ -30,7 +30,7 @@
<div class="item">
<a href="collaboration_whiteboard.html" class="d-flex flex-column align-items-center">
<div class="img_wrap">
<img src="icon/icon_collabo_whiteboad.png" alt="落書き">
<img src="icon/icon_collabo_whiteboard.png" alt="落書き">
</div>
<span>落書き</span>
</a>
......
......@@ -30,7 +30,7 @@
<div class="item">
<a href="collaboration_whiteboard.html" class="d-flex flex-column align-items-center">
<div class="img_wrap">
<img src="icon/icon_collabo_whiteboad.png" alt="落書き">
<img src="icon/icon_collabo_whiteboard.png" alt="落書き">
</div>
<span>落書き</span>
</a>
......
......@@ -193,13 +193,13 @@ function setSocketAction () {
} catch(e) {
message.text = message.text
}
let messageType;
let type;
let collaborationType;
if ( message.text.includes(messageSeperator) ) {
let text = message.text.split(messageSeperator);
message.text = text[0];
messageType = text[1];
if (messageType == messageType.COMMUNICATIONSTART || messageType == messageType.COMMUNICATIONEND) {
type = text[1];
if (type == messageType.COMMUNICATIONSTART || type == messageType.COMMUNICATIONEND) {
collaborationType = text[2];
var userInCollaboration;
if (CHAT_UTIL.isIOS()) {
......
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