editor.ui.addButton( \'ImageUpload\',{
label: \'Upload Image\',
command: \'popup_image_uploader\',
icon: this.path + \'im
In the current ckeditor (4.6.x) the answers above do not work for me.
I dug around in ckeditor/skins/moono-list/editor.css and did a search for "source" to find how they did the Source button which has text. I found this:
.cke_button__source_label,
.cke_button__sourcedialog_label
{
display:inline
}
Notice that there are TWO underscores here before the name of your custom button. When I tried with only one underscore it did not work.
Anyway you would replace "source" or "sourcedialog" above with whatever you want and add that to your own css file.
Additionally, it seems to only work for button names that are entirely lowercase.