From 947e78213b1a987b483a9c29f3436dc15a80d6e0 Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Wed, 22 Feb 2006 22:25:24 +0000 Subject: Bug 291459: Make textareas zoom large when in use - Patch by Marc Schumann r=vladd a=justdave --- template/en/default/attachment/create.html.tmpl | 9 ++++++++- template/en/default/attachment/edit.html.tmpl | 26 ++++++++++++++++++++----- 2 files changed, 29 insertions(+), 6 deletions(-) (limited to 'template/en/default/attachment') diff --git a/template/en/default/attachment/create.html.tmpl b/template/en/default/attachment/create.html.tmpl index c3ef855d4..4de1e5a08 100644 --- a/template/en/default/attachment/create.html.tmpl +++ b/template/en/default/attachment/create.html.tmpl @@ -237,7 +237,14 @@ (optional) Add a comment about this attachment to the [% terms.bug %].
- + [% INCLUDE global/textarea.html.tmpl + name = 'comment' + id = 'comment' + minrows = 6 + maxrows = 15 + cols = 80 + wrap = 'soft' + %] diff --git a/template/en/default/attachment/edit.html.tmpl b/template/en/default/attachment/edit.html.tmpl index eefe141f8..53eb44d9e 100644 --- a/template/en/default/attachment/edit.html.tmpl +++ b/template/en/default/attachment/edit.html.tmpl @@ -212,8 +212,13 @@ Description:
-
+ [% INCLUDE global/textarea.html.tmpl + name = 'description' + minrows = 3 + cols = 25 + wrap = 'soft' + defaultcontent = attachment.description + %]
[% IF attachment.isurl %] Comment (on the [% terms.bug %]):
-
+ [% INCLUDE global/textarea.html.tmpl + name = 'comment' + minrows = 5 + cols = 25 + wrap = 'soft' + %]


@@ -264,8 +274,14 @@ [% IF isviewable %] - + [% INCLUDE global/textarea.html.tmpl + id = 'editFrame' + name = 'comment' + style = 'height: 400px; width: 100%; display: none' + minrows = 10 + cols = 80 + wrap = 'soft' + %]