Changed back to onkeyup= because someone broke the windows onkeypress= again.

This commit is contained in:
hangas%netscape.com 1999-08-27 07:06:25 +00:00
Родитель 10489e5a86
Коммит accaff242d
2 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -52,17 +52,17 @@ Rights Reserved.
<box align="horizontal" flex="100%">
<spring flex="100%"/>
<html:label for="FirstName">&FirstName.label;</html:label>
<html:input type="text" id="FirstName" class="CardEdit" onkeypress="top.GenerateDisplayName()" />
<html:input type="text" id="FirstName" class="CardEdit" onkeyup="top.GenerateDisplayName()" />
</box>
<box align="horizontal">
<spring flex="100%"/>
<html:label for="LastName">&LastName.label;</html:label>
<html:input id="LastName" type="text" class="CardEdit" onkeypress="top.GenerateDisplayName()"/>
<html:input id="LastName" type="text" class="CardEdit" onkeyup="top.GenerateDisplayName()"/>
</box>
<box align="horizontal">
<spring flex="100%"/>
<html:label for="DisplayName">&DisplayName.label;</html:label>
<html:input id="DisplayName" type="text" class="CardEdit" onkeypress="top.DisplayNameChanged()"/>
<html:input id="DisplayName" type="text" class="CardEdit" onkeyup="top.DisplayNameChanged()"/>
</box>
<box align="horizontal">
<spring flex="100%"/>

Просмотреть файл

@ -66,7 +66,7 @@ Rights Reserved.
<html:input id="msgRecipient#1"
class="addressingWidget"
type="text"
onkeypress="if (event.which == 13)
onkeyup="if (event.which == 13)
{ AutoCompleteAddress(this); awReturnHit(this); }"/>
</treecell>
</treerow>