Sfoglia il codice sorgente

Align code comments to team code style.

Maciej 5 anni fa
parent
commit
5f7e1689fb

+ 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';
 	}