// ==UserScript==
// @name           GrowReviewComment
// @namespace      http://wittydomain.com/greasemonkey
// @description    Make the comment box on the review page of Bugzilla a useable size.
// @include        https://bugzilla.mozilla.org/attachment.cgi?id=*&action=edit
// ==/UserScript==

var e=document.getElementById("comment");
e.setAttribute("onFocus","this.rows = 25; this.cols = 80;");
e.setAttribute("onBlur","this.rows = 5; this.cols = 25;");
