Summary | compose window empties when user hits ESC in IE |
Queue | IMP |
Queue Version | RELENG_3 |
Type | Enhancement |
State | Resolved |
Priority | 3. High |
Owners | chuck (at) horde (dot) org |
Requester | liamr (at) umich (dot) edu |
Created | 04/04/2005 (7423 days ago) |
Due | |
Updated | 04/10/2005 (7417 days ago) |
Assigned | 04/10/2005 (7417 days ago) |
Resolved | 04/10/2005 (7417 days ago) |
Milestone | |
Patch | No |
State ⇒ Resolved
to all Horde apps in HEAD, and will be in IMP 4.0.4.
State ⇒ Assigned
State ⇒ New
Priority ⇒ 1. Low
Type ⇒ Enhancement
Summary ⇒ compose window empties when user hits ESC in IE
Queue ⇒ IMP
hit ESC. The message composition area is a text area, it's annoying
that typo can wipe away your entire message. The following changes
will prevent this behavior in IE.
papiamentu-root# lfdiff -T umweb/webmail-2.0.0.t
./usr/local/projects/webmail/html-dev/horde/imp/templates/compose/compose.js
3a4,8
{
return !(window.event && window.event.keyCode == 27);
}
./usr/local/projects/webmail/html-dev/horde/imp/templates/compose/compose.inc
412c412
< <textarea class="composebody" tabindex="<?php echo $tabindex++
?>" name="message" id="message" rows="20" cols="<?php echo
$prefs->getValue('wrap_width') ?>"><?php echo htmlspecialchars($msg)
?></textarea>
---
?>" name="message" id="message" rows="20" cols="<?php echo
$prefs->getValue('wrap_width') ?>" onkeydown="return noesc()"><?php
echo htmlspecialchars($msg) ?></textarea>