CKEDITOR height resize


$(function() {
if( CKEDITOR.instances['editor-form-id'] ) {
CKEDITOR.instances['editor-form-id'].destroy();
}
CKEDITOR.replace('editor-form-id', {height: ['300px']});
});