Sfoglia il codice sorgente

Tests: Updated ContextualBalloon manual test after BalloonPanelView api changes.

Aleksander Nowodzinski 8 anni fa
parent
commit
808ef9f5e4

+ 2 - 2
packages/ckeditor5-ui/tests/manual/contextualballoon/contextualballoon.js

@@ -230,13 +230,13 @@ function createContextualToolbar( editor ) {
 		forwardSelection: ( targetRect, balloonRect ) => ( {
 			top: targetRect.bottom + arrowVOffset,
 			left: targetRect.right - balloonRect.width / 2,
-			name: 's'
+			name: 'arrow_s'
 		} ),
 
 		backwardSelection: ( targetRect, balloonRect ) => ( {
 			top: targetRect.top - balloonRect.height - arrowVOffset,
 			left: targetRect.left - balloonRect.width / 2,
-			name: 'n'
+			name: 'arrow_n'
 		} )
 	};