Explorar el Código

Code refac: Fixed a typo in the EditableUIView method name.

Aleksander Nowodzinski hace 7 años
padre
commit
1272daf30f
Se han modificado 1 ficheros con 3 adiciones y 3 borrados
  1. 3 3
      packages/ckeditor5-ui/src/editableui/editableuiview.js

+ 3 - 3
packages/ckeditor5-ui/src/editableui/editableuiview.js

@@ -97,8 +97,8 @@ export default class EditableUIView extends View {
 			this._editableElement = this.element;
 			this._editableElement = this.element;
 		}
 		}
 
 
-		this.on( 'change:isFocused', () => this._updateisFocusedClasses() );
-		this._updateisFocusedClasses();
+		this.on( 'change:isFocused', () => this._updateIsFocusedClasses() );
+		this._updateIsFocusedClasses();
 	}
 	}
 
 
 	/**
 	/**
@@ -118,7 +118,7 @@ export default class EditableUIView extends View {
 	 *
 	 *
 	 * @private
 	 * @private
 	 */
 	 */
-	_updateisFocusedClasses() {
+	_updateIsFocusedClasses() {
 		const editingView = this._editingView;
 		const editingView = this._editingView;
 
 
 		editingView.change( writer => {
 		editingView.change( writer => {