8
0
Просмотр исходного кода

Other: Update the code comment regarding canceling `Ctrl+K` key stroke. ckeditor/ckeditor5#6202.

Agreed at https://github.com/ckeditor/ckeditor5-utils/pull/333#issuecomment-615275702
Tomek Wytrębowicz 5 лет назад
Родитель
Сommit
dd4359e022
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      packages/ckeditor5-link/src/linkui.js

+ 1 - 1
packages/ckeditor5-link/src/linkui.js

@@ -185,7 +185,7 @@ export default class LinkUI extends Plugin {
 
 		// Handle the `Ctrl+K` keystroke and show the panel.
 		editor.keystrokes.set( linkKeystroke, ( keyEvtData, cancel ) => {
-			// Prevent focusing the search bar in FF and opening new tab in Edge. #153, #154.
+			// Prevent focusing the search bar in FF, Chrome and Edge. See https://github.com/ckeditor/ckeditor5/issues/4811.
 			cancel();
 
 			this._showUI( true );