X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=_samples%2Fskins.html;fp=_samples%2Fskins.html;h=0000000000000000000000000000000000000000;hb=4625dba05116026713fee9008dd93306be0d1553;hp=737cb0caecade9beedc0ff7f1a407fc1e01b656f;hpb=3fe9cac293e090ea459a3ee10d78cbe9e1dd0e03;p=ckeditor.git diff --git a/_samples/skins.html b/_samples/skins.html deleted file mode 100644 index 737cb0c..0000000 --- a/_samples/skins.html +++ /dev/null @@ -1,110 +0,0 @@ - - - - - Skins — 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

-

The default skin used in CKEditor. No additional configuration is required.

-

- - -

-

"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

-

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

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