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

git-svn-id: svn://10.0.0.236/trunk@240255 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
reed%reedloden.com 2007-12-02 22:30:53 +00:00
parent a1cb5aa458
commit 7bbd2e2274
3 changed files with 6 additions and 4 deletions

View File

@ -316,7 +316,7 @@ function PutDescription() {
</td>
<td valign="top">
<input type="text" size="80" name="short_desc" id="short_desc"
maxlength="255">
maxlength="255" spellcheck="true">
<p>
A sentence which summarises the problem.
Please be descriptive and use lots of keywords.

View File

@ -435,7 +435,7 @@ function handleWantsAttachment(wants_attachment) {
<th>Summary:</th>
<td colspan="2">
<input name="short_desc" size="60" value="[% short_desc FILTER html %]"
maxlength="255">
maxlength="255" spellcheck="true">
</td>
<td>&nbsp;</td>
</tr>

View File

@ -157,7 +157,7 @@
<label for="short_desc" accesskey="s"><b><u>S</u>ummary</b></label>:
</td>
[% PROCESS input inputname => "short_desc" size => "60" colspan => 2
maxlength => 255 %]
maxlength => 255 spellcheck => "true" %]
</tr>
<tr>
@ -850,7 +850,8 @@
<input id="[% inputname %]" name="[% inputname %]"
value="[% val FILTER html %]"[% " size=\"$size\"" IF size %]
[% " maxlength=\"$maxlength\"" IF maxlength %]
[% " onfocus=\"$onfocus\"" IF onfocus %]>
[% " onfocus=\"$onfocus\"" IF onfocus %]
[% " spellcheck=\"$spellcheck\"" IF spellcheck %]>
[% ELSE %]
<input type="hidden" name="[% inputname %]" id="[% inputname %]"
value="[% val FILTER html %]">
@ -868,6 +869,7 @@
[% size = 0 %]
[% value = undef %]
[% onfocus = undef %]
[% spellcheck = undef %]
[% END %]
[%############################################################################%]