summaryrefslogtreecommitdiffstats
path: root/application/modules/fbgui
diff options
context:
space:
mode:
authorSimon2011-04-25 17:39:31 +0200
committerSimon2011-04-25 17:39:31 +0200
commit33ea1cceeb3134fa68efb3789c7f0b870e0a1d77 (patch)
treeb6e6d64de98fe6ce6ecd3b652c3669e8273636d7 /application/modules/fbgui
parentfix enter taste (diff)
downloadpbs2-33ea1cceeb3134fa68efb3789c7f0b870e0a1d77.tar.gz
pbs2-33ea1cceeb3134fa68efb3789c7f0b870e0a1d77.tar.xz
pbs2-33ea1cceeb3134fa68efb3789c7f0b870e0a1d77.zip
fix enter taste
Diffstat (limited to 'application/modules/fbgui')
-rw-r--r--application/modules/fbgui/views/scripts/auth/login.phtml2
1 files changed, 1 insertions, 1 deletions
diff --git a/application/modules/fbgui/views/scripts/auth/login.phtml b/application/modules/fbgui/views/scripts/auth/login.phtml
index de0568e..fc0fc1e 100644
--- a/application/modules/fbgui/views/scripts/auth/login.phtml
+++ b/application/modules/fbgui/views/scripts/auth/login.phtml
@@ -7,7 +7,7 @@ echo $this->loginForm;
<script>
$(document).ready(function(){
$("#email").focus();
- $('input').keypress(function(e) {
+ $('body').keypress(function(e) {
if(e.which == 13) {
$(this).blur();
$('#submit').focus().click();