Skip to content

Instantly share code, notes, and snippets.

@ValeriiVasyliev
Created June 13, 2017 19:59
Show Gist options
  • Save ValeriiVasyliev/8f2d16fabcd8b9ded1e09651d610f356 to your computer and use it in GitHub Desktop.
Save ValeriiVasyliev/8f2d16fabcd8b9ded1e09651d610f356 to your computer and use it in GitHub Desktop.
CKEditor add custom css
$(function(){
$('.editor').each(function(e){
CKEDITOR.replace(this.id, {
extraPlugins: 'stylesheetparser',
contentsCss: ['/css/stylenew.css'],
stylesSet: [],
height: '700px',
width: '700px',
on: {
'instanceReady': function (evt) { evt.editor.execCommand('maximize'); }
}
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment