Commit fc1c9eec by Takatoshi Miura

iOS文書協業でPIPをドラッグできないバグを修正

parent b4450c27
...@@ -487,7 +487,8 @@ function changeCollaboration(changeCollaborationType) { ...@@ -487,7 +487,8 @@ function changeCollaboration(changeCollaborationType) {
document.addEventListener('touchmove', function (e) { document.addEventListener('touchmove', function (e) {
if (CHAT_UTIL.isIOS()) { if (CHAT_UTIL.isIOS()) {
if ($(e.target).closest('.add_user_modal').length > 0 if ($(e.target).closest('.add_user_modal').length > 0
|| $(e.target).closest('#overlay_user_list').length > 0) || $(e.target).closest('#overlay_user_list').length > 0
|| $(e.target).closest('.pip_indicator').length > 0)
{ {
e.stopPropagation(); e.stopPropagation();
} else { } else {
......
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