8
0
Просмотр исходного кода

Tests: Updated ContextualBalloon manual test after BalloonPanelView api changes.

Aleksander Nowodzinski 8 лет назад
Родитель
Сommit
808ef9f5e4
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      packages/ckeditor5-ui/tests/manual/contextualballoon/contextualballoon.js

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

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