1/**
2 *  'default' is the ochre toolbar, which is the FCKeditor's default scheme
3 *  'silver' is DokuWikiFCK's default scheme;
4 *        nothing on this page needs to be changed if you want the silver toolbar
5 *   'office2003' replicates the appearance of the Ms Office toolbar
6 *
7*/
8
9/**
10 *    To select a new toolbar scheme, uncomment your choice; for instance, change
11 *           //FCKConfig.FCKGSkinType='office2003';
12 *    to:
13 *           FCKConfig.FCKGSkinType='office2003';
14 *
15 *    The unwanted schemes must remain commented out
16*/
17
18//FCKConfig.FCKGSkinType='default';
19//FCKConfig.FCKGSkinType='silver';
20//FCKConfig.FCKGSkinType='office2003';
21
22
23/** Do Not Change Anything Below This Line  */
24
25if(FCKConfig.FCKGSkinType) {
26    FCKConfig.SkinPath = FCKConfig.BasePath + 'skins/' + FCKConfig.FCKGSkinType +'/' ;
27}
28
29