소스 검색

Prevent following links on click (for Android 4)

Yevhen Pavliuk 8 년 전
부모
커밋
3a948e8543
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      src/editor.html

+ 1
- 1
src/editor.html 파일 보기

858
 			}
858
 			}
859
 
859
 
860
 			function preventLinkFollowingOnTouch() {
860
 			function preventLinkFollowingOnTouch() {
861
-				$('#zss_editor_content').delegate('a', 'touchend', function(event) {
861
+				$('#zss_editor_content').delegate('a', 'click touchend', function(event) {
862
 					event.preventDefault();
862
 					event.preventDefault();
863
 				});
863
 				});
864
 			}
864
 			}