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

Fix mention snippet in feature guide.

Maciej Gołaszewski 6 лет назад
Родитель
Сommit
5eab909677
1 измененных файлов с 8 добавлено и 8 удалено
  1. 8 8
      packages/ckeditor5-mention/docs/_snippets/features/mention.js

+ 8 - 8
packages/ckeditor5-mention/docs/_snippets/features/mention.js

@@ -14,14 +14,14 @@ ClassicEditor
 			items: [
 				'heading', '|', 'bold', 'italic', '|', 'undo', 'redo'
 			],
-			viewportTopOffset: window.getViewportTopOffsetConfig(),
-			mention: [
-				{
-					marker: '@',
-					feed: [ 'Barney', 'Lily', 'Marshall', 'Robin', 'Ted' ]
-				}
-			]
-		}
+			viewportTopOffset: window.getViewportTopOffsetConfig()
+		},
+		mention: [
+			{
+				marker: '@',
+				feed: [ 'Barney', 'Lily', 'Marshall', 'Robin', 'Ted' ]
+			}
+		]
 	} )
 	.then( editor => {
 		window.editor = editor;