From: Brion Vibber Date: Sat, 3 Apr 2010 17:26:43 +0000 (-0700) Subject: Ticket #2272: Block confirmation form should let enter trigger the 'yes' button X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=d4940fe148002bfd6619bcbef95763395bb6d9cc;p=quix0rs-gnu-social.git 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. --- diff --git a/actions/block.php b/actions/block.php index 5fae45dffc..fe4ec00881 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 ec673358e6..88d7634a28 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'); + } + }