Browse Source

Moved IconManagerModel docs to ckeditor5-ui repo.

Aleksander Nowodzinski 9 years ago
parent
commit
bb0fb80cfa
1 changed files with 0 additions and 7 deletions
  1. 0 7
      dev/tasks/build/iconmanagermodel.tpl

+ 0 - 7
dev/tasks/build/iconmanagermodel.tpl

@@ -10,13 +10,6 @@ import Model from '/ckeditor5/ui/model.js';
 const iconIds = [ {{#shapes}}'{{name}}',{{/shapes}} ];
 const iconPrefix = 'ck-icon-';
 
-/**
- * Provides a Model containing icon sprite form IconManagerView.
- *
- * @memberOf ui
- * @extends ui.Model
- */
-
 export default new Model( {
 	icons: iconIds.map( i => i.slice( iconPrefix.length ) ),
 	sprite: `{{#shapes}}{{{svg}}}{{/shapes}}`