Martin Ille
Martin Ille

Reputation: 7055

Inserting CKEditor specialchar plugin into custom toolbar not working

I'm trying to set custom toolbar in CKEDITOR:

CKEDITOR.config.toolbar = [
  [ 'Bold', 'Italic', 'Underline', 'Strike', 'Subscript', 'Superscript', '-', 'RemoveFormat' ],    
  [ 'Image', 'Table' ],
  [ 'specialchar' ]
];

The first 2 groups are without problems but the 3rd "specialchar" is not loading. What am I doing wrong?

fiddle: http://jsfiddle.net/martinba/vYYVR/

Upvotes: 1

Views: 156

Answers (1)

Smileek
Smileek

Reputation: 2782

It's all about capitals.

[ 'SpecialChar' ]

Upvotes: 5

Related Questions