well, fckeditor disables text area resizing for a reason. sadly, it disables resizing even if it is opening in a popup and interfere nothing. I wrote this little fix:
replace:
$element['#resizable'] = FALSE;
with:

  	if (!variable_get('fckeditor_popup', '0')) {
	    $element['#resizable'] = FALSE;
	  }

Comments

ontwerpwerk’s picture

good tip... I'll incorporate it soon

wwalc’s picture

Version: 5.x-1.3-beta » 5.x-2.1-beta
Status: Needs review » Fixed
wwalc’s picture

Version: 5.x-2.1-beta » 5.x-1.3-beta

Corrected the version assignment.

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.