Commit fc1c9eec by Takatoshi Miura

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

parent b4450c27
...@@ -485,15 +485,16 @@ function changeCollaboration(changeCollaborationType) { ...@@ -485,15 +485,16 @@ 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(); {
} else { e.stopPropagation();
e.preventDefault(); } else {
} e.preventDefault();
} }
}
}, {passive: false}); }, {passive: false});
function initCollaborationUI(changeCollaborationType){ function initCollaborationUI(changeCollaborationType){
......
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