Skip to content

Instantly share code, notes, and snippets.

@sitepodmatt
Last active August 29, 2015 14:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sitepodmatt/5d9342558d5ad3b82ad8 to your computer and use it in GitHub Desktop.
Save sitepodmatt/5d9342558d5ad3b82ad8 to your computer and use it in GitHub Desktop.
var keys = Object.keys(CKEDITOR.instances);
for(var i=0;i<keys.length;i++) {
var key = keys[i];
var config = CKEDITOR.instances[key].config;
if(config.toolbar.length > 0) {
config.toolbar = null;
CKEDITOR.instances[key].destroy();
CKEDITOR.replace(key, config);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment