Commit bd925e1b authored by reed%reedloden.com's avatar reed%reedloden.com

Bug 389983 - "Enable spellchecking in the summary field" [p=reed r+a=justdave]

parent b4478793
...@@ -316,7 +316,7 @@ function PutDescription() { ...@@ -316,7 +316,7 @@ function PutDescription() {
</td> </td>
<td valign="top"> <td valign="top">
<input type="text" size="80" name="short_desc" id="short_desc" <input type="text" size="80" name="short_desc" id="short_desc"
maxlength="255"> maxlength="255" spellcheck="true">
<p> <p>
A sentence which summarises the problem. A sentence which summarises the problem.
Please be descriptive and use lots of keywords. Please be descriptive and use lots of keywords.
......
...@@ -435,7 +435,7 @@ function handleWantsAttachment(wants_attachment) { ...@@ -435,7 +435,7 @@ function handleWantsAttachment(wants_attachment) {
<th>Summary:</th> <th>Summary:</th>
<td colspan="2"> <td colspan="2">
<input name="short_desc" size="60" value="[% short_desc FILTER html %]" <input name="short_desc" size="60" value="[% short_desc FILTER html %]"
maxlength="255"> maxlength="255" spellcheck="true">
</td> </td>
<td>&nbsp;</td> <td>&nbsp;</td>
</tr> </tr>
......
...@@ -157,7 +157,7 @@ ...@@ -157,7 +157,7 @@
<label for="short_desc" accesskey="s"><b><u>S</u>ummary</b></label>: <label for="short_desc" accesskey="s"><b><u>S</u>ummary</b></label>:
</td> </td>
[% PROCESS input inputname => "short_desc" size => "60" colspan => 2 [% PROCESS input inputname => "short_desc" size => "60" colspan => 2
maxlength => 255 %] maxlength => 255 spellcheck => "true" %]
</tr> </tr>
<tr> <tr>
...@@ -850,7 +850,8 @@ ...@@ -850,7 +850,8 @@
<input id="[% inputname %]" name="[% inputname %]" <input id="[% inputname %]" name="[% inputname %]"
value="[% val FILTER html %]"[% " size=\"$size\"" IF size %] value="[% val FILTER html %]"[% " size=\"$size\"" IF size %]
[% " maxlength=\"$maxlength\"" IF maxlength %] [% " maxlength=\"$maxlength\"" IF maxlength %]
[% " onfocus=\"$onfocus\"" IF onfocus %]> [% " onfocus=\"$onfocus\"" IF onfocus %]
[% " spellcheck=\"$spellcheck\"" IF spellcheck %]>
[% ELSE %] [% ELSE %]
<input type="hidden" name="[% inputname %]" id="[% inputname %]" <input type="hidden" name="[% inputname %]" id="[% inputname %]"
value="[% val FILTER html %]"> value="[% val FILTER html %]">
...@@ -868,6 +869,7 @@ ...@@ -868,6 +869,7 @@
[% size = 0 %] [% size = 0 %]
[% value = undef %] [% value = undef %]
[% onfocus = undef %] [% onfocus = undef %]
[% spellcheck = undef %]
[% END %] [% END %]
[%############################################################################%] [%############################################################################%]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment