editor.ui.addButton( \'ImageUpload\',{
label: \'Upload Image\',
command: \'popup_image_uploader\',
icon: this.path + \'im
another solution would be to just use the css ":before" or ":after" pseudo class to add some custom content before / after the buttons.
for example, customizing the "link" button:
create some space (depends on length of content):
.cke_button_icon.cke_button__link_icon {
padding-right: 25px;
}
add content:
.cke_button_icon.cke_button__link_icon:after {
content: "Link";
position: relative;
left: 15px;
}