diff options
author | lpsolit%gmail.com <> | 2006-02-22 23:25:24 +0100 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-02-22 23:25:24 +0100 |
commit | 947e78213b1a987b483a9c29f3436dc15a80d6e0 (patch) | |
tree | b4804b91f751265bdc15cc78289404ad7aea6f04 /template/en/default/admin/components | |
parent | b3cdb97bbfa7fa359d30267530dbc6f213ba33c3 (diff) | |
download | bugzilla-947e78213b1a987b483a9c29f3436dc15a80d6e0.tar.gz bugzilla-947e78213b1a987b483a9c29f3436dc15a80d6e0.tar.xz |
Bug 291459: Make textareas zoom large when in use - Patch by Marc Schumann <wurblzap@gmail.com> r=vladd a=justdave
Diffstat (limited to 'template/en/default/admin/components')
-rw-r--r-- | template/en/default/admin/components/create.html.tmpl | 8 | ||||
-rw-r--r-- | template/en/default/admin/components/edit.html.tmpl | 10 |
2 files changed, 14 insertions, 4 deletions
diff --git a/template/en/default/admin/components/create.html.tmpl b/template/en/default/admin/components/create.html.tmpl index fcb57bb03..ea4380d50 100644 --- a/template/en/default/admin/components/create.html.tmpl +++ b/template/en/default/admin/components/create.html.tmpl @@ -40,8 +40,12 @@ <tr> <th align="right">Description:</th> <td> - <textarea rows="4" cols="64" wrap="virtual" - name="description"></textarea> + [% INCLUDE global/textarea.html.tmpl + name = 'description' + minrows = 4 + cols = 64 + wrap = 'virtual' + %] </td> </tr> <tr> diff --git a/template/en/default/admin/components/edit.html.tmpl b/template/en/default/admin/components/edit.html.tmpl index 8b350d9e8..920ad1ff6 100644 --- a/template/en/default/admin/components/edit.html.tmpl +++ b/template/en/default/admin/components/edit.html.tmpl @@ -43,8 +43,14 @@ </tr> <tr> <td valign="top">Component Description:</td> - <td><textarea rows="4" cols="64" wrap="virtual" - name="description">[% comp.description FILTER html %]</textarea> + <td> + [% INCLUDE global/textarea.html.tmpl + name = 'description' + minrows = 4 + cols = 64 + wrap = 'virtual' + defaultcontent = comp.description + %] </td> </tr> <tr> |