diff --git a/docs/client/api.html b/docs/client/api.html
index 876e0b877f..f1ac161bb2 100644
--- a/docs/client/api.html
+++ b/docs/client/api.html
@@ -2304,8 +2304,8 @@ Example:
// Fires when any element with the 'accept' class is clicked
'click .accept': function (event) { ... },
- // Fires when 'accept' is clicked, or a key is pressed
- 'keydown, click .accept': function (event) { ... }
+ // Fires when 'accept' is clicked or focused, or a key is pressed
+ 'click .accept, focus .accept, keypress': function (event) { ... }
}
Most events bubble up the document tree from their originating