1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-29 12:20:51 +02:00

subscribe dialog: disable hotkeys on login/pass fields

This commit is contained in:
Andrew Dolgov 2007-08-23 12:38:27 +01:00
parent ca872b9dfa
commit 0e2dd39a35

View File

@ -87,9 +87,9 @@
print "<div id='fadd_login_container' style='display:none'>
<table width='100%'>
<tr><td width='20%'>".__('Login:')."</td><td><input name='auth_login' class='iedit'></td></tr>
<tr><td width='20%'>".__('Login:')."</td><td><input name='auth_login' class='iedit' onfocus=\"javascript:disableHotkeys()\" onfocus=\"javascript:disableHotkeys()\" onkeypress=\"return filterCR(event, qaddFeed)\"></td></tr>
<tr><td>".__('Password:')."</td><td><input type='password'
name='auth_pass' class='iedit'></td></tr>
name='auth_pass' class='iedit' onfocus=\"javascript:disableHotkeys()\" onfocus=\"javascript:disableHotkeys()\" onkeypress=\"return filterCR(event, qaddFeed)\"></td></tr>
</table>
</div>";