Browse Source

Prevent following links on click (for Android 4)

Yevhen Pavliuk 8 years ago
parent
commit
3a948e8543
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/editor.html

+ 1
- 1
src/editor.html View File

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
 			}