// MediaTemple - Stretch Textarea v0.1
// Made By Luke Stevenson {http://www.lucanos.com/}
// Distributed and Maintained via GMVC
// Last updated: 01 April 2007
//
//   Increases the size of the textarea in the MediaTemple file editing
// interface.
//
// ==UserScript==
// @name              MediaTemple - Stretch Textarea
// @namespace         http://gmvc.lucanos.com/
// @description       (v0.1) Stretch the MediaTemple file editing textarea.
// @include           https://ac.mediatemple.net/services/manage/grid/filemanager/edit.mt*
// ==/UserScript==

if ( document.forms[0].elements[4].type=="textarea" ) {
  // If the field exists
  // Remove the inline CSS
  document.forms[0].elements[4].style.height="";
  // Apply the older (but more practical) Rows attribute
  document.forms[0].elements[4].rows="30";
}