aboutsummaryrefslogtreecommitdiff
path: root/sources/skins/moono/skin.js
diff options
context:
space:
mode:
Diffstat (limited to 'sources/skins/moono/skin.js')
-rw-r--r--sources/skins/moono/skin.js53
1 files changed, 25 insertions, 28 deletions
diff --git a/sources/skins/moono/skin.js b/sources/skins/moono/skin.js
index 6dbdaa9..420b22e 100644
--- a/sources/skins/moono/skin.js
+++ b/sources/skins/moono/skin.js
@@ -1,5 +1,5 @@
1/** 1/**
2 * @license Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 2 * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3 * For licensing, see LICENSE.md or http://ckeditor.com/license 3 * For licensing, see LICENSE.md or http://ckeditor.com/license
4 */ 4 */
5 5
@@ -276,9 +276,6 @@ CKEDITOR.skin.chameleon = ( function() {
276// ---------------------------------------------------------- 276// ----------------------------------------------------------
277// (http://docs.cksource.com/CKEditor_4.x/Skin_SDK/Icons) 277// (http://docs.cksource.com/CKEditor_4.x/Skin_SDK/Icons)
278// 278//
279// Note: As "moono" is the default CKEditor skin, it provides no custom icons,
280// thus this code is commented out.
281//
282// This code is here just to make the skin work fully when using its "source" 279// This code is here just to make the skin work fully when using its "source"
283// version. Without this, the skin will still work, but its icons will not be 280// version. Without this, the skin will still work, but its icons will not be
284// used (again, on source version only). 281// used (again, on source version only).
@@ -291,29 +288,29 @@ CKEDITOR.skin.chameleon = ( function() {
291// If a required icon is not available here, the plugin defined icon will be 288// If a required icon is not available here, the plugin defined icon will be
292// used instead. This means that a skin is not required to provide all icons. 289// used instead. This means that a skin is not required to provide all icons.
293// Actually, it is not required to provide icons at all. 290// Actually, it is not required to provide icons at all.
294// 291
295// (function() { 292( function() {
296// // The available icons. This list must match the file names (without 293 // The available icons. This list must match the file names (without
297// // extension) available inside the "icons" folder. 294 // extension) available inside the "icons" folder.
298// var icons = ( 'about,anchor-rtl,anchor,bgcolor,bidiltr,bidirtl,blockquote,' + 295 var icons = ( 'about,anchor-rtl,anchor,bgcolor,bidiltr,bidirtl,blockquote,' +
299// 'bold,bulletedlist-rtl,bulletedlist,button,checkbox,copy-rtl,copy,' + 296 'bold,bulletedlist-rtl,bulletedlist,button,checkbox,copy-rtl,copy,copyformatting,' +
300// 'creatediv,cut-rtl,cut,docprops-rtl,docprops,find-rtl,find,flash,form,' + 297 'creatediv,cut-rtl,cut,docprops-rtl,docprops,find-rtl,find,flash,form,' +
301// 'hiddenfield,horizontalrule,icons,iframe,image,imagebutton,indent-rtl,' + 298 'hiddenfield,horizontalrule,icons,iframe,image,imagebutton,indent-rtl,' +
302// 'indent,italic,justifyblock,justifycenter,justifyleft,justifyright,' + 299 'indent,italic,justifyblock,justifycenter,justifyleft,justifyright,' +
303// 'link,maximize,newpage-rtl,newpage,numberedlist-rtl,numberedlist,' + 300 'link,maximize,newpage-rtl,newpage,numberedlist-rtl,numberedlist,' +
304// 'outdent-rtl,outdent,pagebreak-rtl,pagebreak,paste-rtl,paste,' + 301 'outdent-rtl,outdent,pagebreak-rtl,pagebreak,paste-rtl,paste,' +
305// 'pastefromword-rtl,pastefromword,pastetext-rtl,pastetext,preview-rtl,' + 302 'pastefromword-rtl,pastefromword,pastetext-rtl,pastetext,preview-rtl,' +
306// 'preview,print,radio,redo-rtl,redo,removeformat,replace,save,scayt,' + 303 'preview,print,radio,redo-rtl,redo,removeformat,replace,save,scayt,' +
307// 'select-rtl,select,selectall,showblocks-rtl,showblocks,smiley,' + 304 'select-rtl,select,selectall,showblocks-rtl,showblocks,smiley,' +
308// 'source-rtl,source,specialchar,spellchecker,strike,subscript,' + 305 'source-rtl,source,specialchar,spellchecker,strike,subscript,' +
309// 'superscript,table,templates-rtl,templates,textarea-rtl,textarea,' + 306 'superscript,table,templates-rtl,templates,textarea-rtl,textarea,' +
310// 'textcolor,textfield-rtl,textfield,uicolor,underline,undo-rtl,undo,unlink' ).split( ',' ); 307 'textcolor,textfield-rtl,textfield,uicolor,underline,undo-rtl,undo,unlink' ).split( ',' );
311// 308
312// var iconsFolder = CKEDITOR.getUrl( CKEDITOR.skin.path() + 'icons/' + ( CKEDITOR.env.hidpi ? 'hidpi/' : '' ) ); 309 var iconsFolder = CKEDITOR.getUrl( CKEDITOR.skin.path() + 'icons/' + ( CKEDITOR.env.hidpi ? 'hidpi/' : '' ) );
313// 310
314// for ( var i = 0; i < icons.length; i++ ) { 311 for ( var i = 0; i < icons.length; i++ ) {
315// CKEDITOR.skin.addIcon( icons[ i ], iconsFolder + icons[ i ] + '.png' ); 312 CKEDITOR.skin.addIcon( icons[ i ], iconsFolder + icons[ i ] + '.png' );
316// } 313 }
317// })(); 314} )();
318 315
319// %REMOVE_END% 316// %REMOVE_END%