8
0
فهرست منبع

Aligned key names to our convention.

Piotrek Koszuliński 8 سال پیش
والد
کامیت
21c85f43f8
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      packages/ckeditor5-list/src/list.js

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

@@ -61,9 +61,9 @@ export default class List extends Plugin {
 		this.listenTo( this.editor.editing.view, 'keydown', ( evt, data ) => {
 			let commandName = null;
 
-			if ( data.keystroke == parseKeystroke( 'tab' ) ) {
+			if ( data.keystroke == parseKeystroke( 'Tab' ) ) {
 				commandName = 'indentList';
-			} else if ( data.keystroke == parseKeystroke( 'Shift+tab' ) ) {
+			} else if ( data.keystroke == parseKeystroke( 'Shift+Tab' ) ) {
 				commandName = 'outdentList';
 			}