Parcourir la source

Fixed API docs.

Maciej Bukowski il y a 8 ans
Parent
commit
4a49408b28
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      packages/ckeditor5-link/src/link.js

+ 2 - 2
packages/ckeditor5-link/src/link.js

@@ -133,8 +133,8 @@ export default class Link extends Plugin {
 
 
 		// Handle the `Ctrl+K` keystroke and show the panel.
 		// Handle the `Ctrl+K` keystroke and show the panel.
 		editor.keystrokes.set( linkKeystroke, ( keyEvtData, cancel ) => {
 		editor.keystrokes.set( linkKeystroke, ( keyEvtData, cancel ) => {
-			// Stop the event in the DOM to prevent default browser action.
-			// See https://github.com/ckeditor/ckeditor5-link/issues/153.
+			// Prevent focusing the search bar in FF. #153.
+			// Prevent opening new tab in Edge. #154.
 			cancel();
 			cancel();
 
 
 			if ( linkCommand.isEnabled ) {
 			if ( linkCommand.isEnabled ) {