Przeglądaj źródła

Changed property name.

Oskar Wróbel 8 lat temu
rodzic
commit
8c9ee4fbd0

+ 3 - 3
packages/ckeditor5-ui/src/toolbar/contextual/contextualtoolbar.js

@@ -75,7 +75,7 @@ export default class ContextualToolbar extends Plugin {
 		 * @private
 		 * @private
 		 * @member {Function}
 		 * @member {Function}
 		 */
 		 */
-		this._resolveShowPanelPromise = spy();
+		this._showPanelPromiseResolver = spy();
 
 
 		// Attach lifecycle actions.
 		// Attach lifecycle actions.
 		this._handleSelectionChange();
 		this._handleSelectionChange();
@@ -145,7 +145,7 @@ export default class ContextualToolbar extends Plugin {
 	 */
 	 */
 	stop( evt ) {
 	stop( evt ) {
 		evt.stop();
 		evt.stop();
-		this._resolveShowPanelPromise();
+		this._showPanelPromiseResolver();
 		this.stopListening( this, 'beforeShow' );
 		this.stopListening( this, 'beforeShow' );
 	}
 	}
 
 
@@ -172,7 +172,7 @@ export default class ContextualToolbar extends Plugin {
 		}
 		}
 
 
 		const showPromise = new Promise( ( resolve ) => {
 		const showPromise = new Promise( ( resolve ) => {
-			this._resolveShowPanelPromise = resolve;
+			this._showPanelPromiseResolver = resolve;
 
 
 			// If `beforeShow` event is not stopped by any external code then panel will be displayed.
 			// If `beforeShow` event is not stopped by any external code then panel will be displayed.
 			this.listenTo( this, 'beforeShow', ( evt ) => {
 			this.listenTo( this, 'beforeShow', ( evt ) => {