Parcourir la source

Prevent following links on click (for Android 4)

Yevhen Pavliuk il y a 8 ans
Parent
révision
3a948e8543
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1
    1
      src/editor.html

+ 1
- 1
src/editor.html Voir le fichier

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