8
0
فهرست منبع

A minor fix to IconManagerView#init inner documentation string.

Aleksander Nowodzinski 9 سال پیش
والد
کامیت
61d960ba89
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      packages/ckeditor5-ui/src/iconmanager/iconmanagerview.js

+ 1 - 1
packages/ckeditor5-ui/src/iconmanager/iconmanagerview.js

@@ -47,7 +47,7 @@ export default class IconManagerView extends View {
 		const symbols = tmp.firstChild.childNodes;
 		const symbols = tmp.firstChild.childNodes;
 
 
 		// Pick symbols from the tmp and put them into icon manager.
 		// Pick symbols from the tmp and put them into icon manager.
-		// Note MS Edge does not support forEach or Symbol.iterator for NodeList.
+		// Note: MS Edge does not support forEach or Symbol.iterator for NodeList.
 		for ( let i = 0; i < symbols.length; ++i ) {
 		for ( let i = 0; i < symbols.length; ++i ) {
 			this.element.appendChild( document.importNode( symbols[ i ], true ) );
 			this.element.appendChild( document.importNode( symbols[ i ], true ) );
 		}
 		}