浏览代码

Align code comments to team code style.

Maciej 5 年之前
父节点
当前提交
5f7e1689fb
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      packages/ckeditor5-paste-from-office/src/filters/list.js

+ 2 - 1
packages/ckeditor5-paste-from-office/src/filters/list.js

@@ -212,8 +212,9 @@ function findBulletedListStyle( element ) {
 		return 'circle';
 	} else if ( listMarker === '·' ) {
 		return 'disc';
+	}
 	// Word returns '§' instead of '■' for the square list style.
-	} else if ( listMarker === '§' ) {
+	else if ( listMarker === '§' ) {
 		return 'square';
 	}