Skip to content

Commit

Permalink
Made Moono the default skin in the repo code.
Browse files Browse the repository at this point in the history
  • Loading branch information
fredck authored and oleq committed Oct 23, 2012
1 parent 68b9bf9 commit 8facbdb
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
6 changes: 3 additions & 3 deletions ckeditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ else {
*
* **Note:** This is a global configuration that applies to all instances.
*
* CKEDITOR.skinName = 'kama';
* CKEDITOR.skinName = 'moono';
*
* CKEDITOR.skinName = 'myskin,/customstuff/myskin/';
*
* @cfg {String} [skinName='kama']
* @cfg {String} [skinName='moono']
* @member CKEDITOR
*/
CKEDITOR.skinName = 'kama';
CKEDITOR.skinName = 'moono';
2 changes: 1 addition & 1 deletion core/editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
* the page when creating the editor.
*
* var editor = CKEDITOR.instances.editor1;
* alert( editor.config.skin ); // e.g. 'kama'
* alert( editor.config.skin ); // e.g. 'moono'
*
* @property {CKEDITOR.config}
*/
Expand Down
2 changes: 1 addition & 1 deletion core/skin.js
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@
* editor installation. In that case, the absolute URL path to that folder
* should be provided, separated by a comma (`'skin_name,skin_path'`).
*
* config.skin = 'kama';
* config.skin = 'moono';
*
* config.skin = 'myskin,/customstuff/myskin/';
*
Expand Down
2 changes: 1 addition & 1 deletion dev/builder/build-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*/

var CKBUILDER_CONFIG = {
skin: 'kama',
skin: 'moono',
ignore: [
'dev',
'.gitignore',
Expand Down
5 changes: 3 additions & 2 deletions samples/uicolor.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,14 @@
</head>
<body>
<h1 class="samples">
<a href="index.html">CKEditor Samples</a> &raquo; Kama UI Color
<a href="index.html">CKEditor Samples</a> &raquo; UI Color
</h1>
<div class="description">
<p>
This sample shows how to automatically replace <code>&lt;textarea&gt;</code> elements
with a CKEditor instance with an option to change the color of its user interface.<br>
<strong>Note:</strong>The UI skin color is a feature dedicated to the "kama" skin.
<strong>Note:</strong>The UI skin color feature depends on the CKEditor skin
compatibility. The Moono and Kama skins are examples of skins that work with it.
</p>
<h2 class="samples">Setting the User Interface Color</h2>
<p>
Expand Down

0 comments on commit 8facbdb

Please sign in to comment.