diff options
author | Brion Vibber <brion@pobox.com> | 2010-04-03 10:26:43 -0700 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-04-03 10:26:43 -0700 |
commit | f2b60b78b6096447a8aadc3d5075bb916f89880a (patch) | |
tree | 62d06feace66496a157110e7013a24d392cf57cf /actions/groupblock.php | |
parent | a29c19b4de5b061a7455699cc61e89ef9d856312 (diff) |
Ticket #2272: Block confirmation form should let enter trigger the 'yes' button
Setting focus into the form to make it easier to submit by keyboard. Enter or space will now trigger the button right off without having to mouse around to find the button after we've clicked into the conf form, and keyboarders can also get to the 'no' button more easily.
Diffstat (limited to 'actions/groupblock.php')
-rw-r--r-- | actions/groupblock.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/actions/groupblock.php b/actions/groupblock.php index ec673358e..88d7634a2 100644 --- a/actions/groupblock.php +++ b/actions/groupblock.php @@ -214,5 +214,12 @@ class GroupblockAction extends Action 303); } } + + function showScripts() + { + parent::showScripts(); + $this->autofocus('form_action-yes'); + } + } |