From 5136b1cf8e4637c253cca609c336038edb8274e3 Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Mon, 18 Dec 2017 11:20:13 -0800 Subject: [PATCH] GUACAMOLE-352: Clarify that Guacamole.Keyboard can be given an Element or a Document. --- guacamole-common-js/src/main/webapp/modules/Keyboard.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guacamole-common-js/src/main/webapp/modules/Keyboard.js b/guacamole-common-js/src/main/webapp/modules/Keyboard.js index c25a1fd45..aaeb1f621 100644 --- a/guacamole-common-js/src/main/webapp/modules/Keyboard.js +++ b/guacamole-common-js/src/main/webapp/modules/Keyboard.js @@ -25,7 +25,7 @@ var Guacamole = Guacamole || {}; * which represent keys as their corresponding X11 keysym. * * @constructor - * @param {Element} [element] + * @param {Element|Document} [element] * The Element to use to provide keyboard events. If omitted, at least one * Element must be manually provided through the listenTo() function for * the Guacamole.Keyboard instance to have any effect. @@ -1186,7 +1186,7 @@ Guacamole.Keyboard = function Keyboard(element) { * events signalled through this Guacamole.Keyboard's onkeydown and * onkeyup handlers. * - * @param {Element} element + * @param {Element|Document} element * The Element to attach event listeners to for the sake of handling * key or input events. */