Larger WYSIWYG Editor
Larger WYSIWYG Editor
I'd like a larger WYSIWYG editor. Maybe even if it could detach or maximize to the size of the screen page. The scrolling is not fun.
Öffne im Verzeichnis include/inc_lib die Datei "htmlarea.editor.inc.php".
Da kann man die Größe einstellen.
Code: Select all
36 function initEditor (edit_field, cw, ch) {
37 var config = new HTMLArea.Config(); // create a new configuration object having all the default values
38 if(cw == '') { cw = '440px'; }
39 if(ch == '') { ch = '550px'; }
40 config.width = cw;
41 config.height = ch;
bye Rene