Index: lams_central/web/includes/javascript/ckconfig_custom.js =================================================================== RCS file: /usr/local/cvsroot/lams_central/web/includes/javascript/ckconfig_custom.js,v diff -u -r1.19.2.10 -r1.19.2.11 --- lams_central/web/includes/javascript/ckconfig_custom.js 9 Nov 2016 00:54:14 -0000 1.19.2.10 +++ lams_central/web/includes/javascript/ckconfig_custom.js 9 Nov 2016 06:00:05 -0000 1.19.2.11 @@ -140,6 +140,14 @@ }); CKEDITOR.on('instanceReady', function(e){ + var height = e.editor.config.height; + if ( ! height ) { + height = "60px"; + } else if ( height.indexOf("px") == -1 ){ + height = height + "px"; + } + e.editor._.editable.$.style.minHeight = height; + // make all links open in new window e.editor.on('getData', function(f){ // create a DOM element for easier manipulation