Created
July 30, 2017 21:50
-
-
Save ailabs-software/7de8041e68621738bb73451bbaacf7e8 to your computer and use it in GitHub Desktop.
WHAT THE HELL IS GOING ON :-(
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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