Explorar o código

Fixed: usage of old EmitterMixin#on API.

Szymon Cofalik %!s(int64=9) %!d(string=hai) anos
pai
achega
575c69fc24
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      packages/ckeditor5-typing/src/input.js

+ 1 - 1
packages/ckeditor5-typing/src/input.js

@@ -39,7 +39,7 @@ export default class Input extends Feature {
 
 		this.listenTo( editingView, 'keydown', ( evt, data ) => {
 			this._handleKeydown( data );
-		}, null, 9999 ); // LOWEST
+		}, 'lowest' );
 
 		this.listenTo( editingView, 'mutations', ( evt, mutations ) => {
 			this._handleMutations( mutations );