Commit 134248d8 by Takatoshi Miura

Merge branch 'origin/ios_release' into 'release_sp3'

ios協業制限

See merge request !100
parents 14505b01 1c5df485
......@@ -1350,6 +1350,14 @@ CHAT_UI.loadMessages = function(roomId, roomName) {
// メッセージの画面描画
jQueryMessages.prepend(workVal);
// iOSは協業ボタンを非活性化
if (CHAT_UTIL.isIOS()) {
$('.footer_content_b a').css('pointer-events', 'none');
$('.footer_content_b .footer_item').on('click', function() {
alert('選択した機能は現在ご利用になれません。');
});
}
CHAT_UI.waitForLoadingImage(jQueryMessages, CHAT_UI.scrollToBottom);
CHAT_UI.waitForLoadingVideo(jQueryMessages, CHAT_UI.scrollToBottom);
// ユーザ削除ボタン表示しない
......
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