8
0
فهرست منبع

Code refactoring.

Aleksander Nowodzinski 9 سال پیش
والد
کامیت
e253dfeccf
1فایلهای تغییر یافته به همراه7 افزوده شده و 1 حذف شده
  1. 7 1
      packages/ckeditor5-theme-lark/tests/manual/theme.js

+ 7 - 1
packages/ckeditor5-theme-lark/tests/manual/theme.js

@@ -350,7 +350,13 @@ function icon( name ) {
 	return new Icon( model, new IconView() );
 }
 
-function button( { label = 'Button', noText = false, isEnabled = true, isOn = false, icon, iconAlign } = {} ) {
+function button( {
+	label = 'Button',
+	noText = false,
+	isEnabled = true,
+	isOn = false,
+	icon, iconAlign
+} = {} ) {
 	const model = new Model( { label, noText, isEnabled, isOn, icon, iconAlign } );
 
 	return new Button( model, new ButtonView() );