From d4940fe148002bfd6619bcbef95763395bb6d9cc Mon Sep 17 00:00:00 2001
From: Brion Vibber <brion@pobox.com>
Date: Sat, 3 Apr 2010 10:26:43 -0700
Subject: [PATCH] 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.

---
 actions/block.php      | 7 +++++++
 actions/groupblock.php | 7 +++++++
 2 files changed, 14 insertions(+)

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');
+    }
+
 }
 
-- 
2.39.5