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:29:24 -0700 |
commit | d4940fe148002bfd6619bcbef95763395bb6d9cc (patch) | |
tree | d3eb13c23aa95e2ae6d3b2045d126c161036b402 /actions | |
parent | d3e47797485d671bd6f806cd0ba72f499e049a66 (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')
-rw-r--r-- | actions/block.php | 7 | ||||
-rw-r--r-- | actions/groupblock.php | 7 |
2 files changed, 14 insertions, 0 deletions
diff --git a/actions/block.php b/actions/block.php index 5fae45dff..fe4ec0088 100644 --- a/actions/block.php +++ b/actions/block.php @@ -168,4 +168,11 @@ class BlockAction extends ProfileFormAction return; } } + + function showScripts() + { + parent::showScripts(); + $this->autofocus('form_action-yes'); + } + } 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'); + } + } |