Hello,
inside widearea.js:
//add widearea class to textarea
currentTextArea.className += (currentTextArea.className + " widearea").replace(/^\s+|\s+$/g, "");
The '+' should be eliminated to prevent duplicating the existing class name and to prevent destroying the css layout.