X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=_samples%2Fskins.html;h=b73f8b9adf7de7c3134b5a95a9a90b9a5cf85e05;hb=2f22c0c38f17e75be5541089076885442aaa2377;hp=77e0f568d2a202bcbcafee1fa4d797823c2747d5;hpb=7cd80714081a8ffdf4a1a8d2c72f120ed5ef3d6d;p=ckeditor.git diff --git a/_samples/skins.html b/_samples/skins.html index 77e0f56..b73f8b9 100644 --- a/_samples/skins.html +++ b/_samples/skins.html @@ -1,20 +1,38 @@ - Sample - CKEditor - + Skins — CKEditor Sample + - + -

- CKEditor Sample +

+ CKEditor Sample — Skins

+
+

+ This sample shows how to automatically replace <textarea> elements + with a CKEditor instance using a specific skin. +

+

+ CKEditor with a specified skin (in this case, the "Office 2003" skin) is inserted with a JavaScript call using the following code: +

+
CKEDITOR.replace( 'textarea_id',
+	{
+		skin : 'office2003'
+	});
+

+ Note that textarea_id in the code above is the id attribute of + the <textarea> element to be replaced. +

+
+
-
-

- "Kama" skin:
- - -

-

- "Office 2003" skin:
- - +

+

"Office 2003" skin

+

Use the following code to configure a CKEditor instance to use the "Office 2003" skin.

+
CKEDITOR.replace( 'textarea_id',
+	{
+		skin : 'office2003'
+	});
+

+ + -

-

- "V2" skin:
- - +

+

"V2" skin

+

Use the following code to configure a CKEditor instance to use the "V2" skin.

+
CKEDITOR.replace( 'textarea_id',
+	{
+		skin : 'v2'
+	});
+ + -

-
+ //]]> + +