ソースを参照

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
 			}