Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ailabs-software/7de8041e68621738bb73451bbaacf7e8 to your computer and use it in GitHub Desktop.
Save ailabs-software/7de8041e68621738bb73451bbaacf7e8 to your computer and use it in GitHub Desktop.
WHAT THE HELL IS GOING ON :-(
CKEDITOR.on('dialogDefinition', function(ev) {
if (ev.data.name == "link") {
var info = dialog.getContents("info");
info.elements.push({
type: "vbox",
id: "urlOptions",
children: [{
type: "hbox",
children: [{
id: "button",
type: "checkbox",
label: "Button",
commit: function(data) {
data.button = this.getValue()
console.log("commit", data.button, data);
},
setup: function(data) {
this.setValue(data.button);
console.log("setup", data.button, data);
}
}]
}]
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment