| Index: ui/webui/resources/js/cr/ui/command.js
|
| diff --git a/ui/webui/resources/js/cr/ui/command.js b/ui/webui/resources/js/cr/ui/command.js
|
| index 302219cdf74ea181f6814a8e2e3f4ecf19282dca..e23e958d68df4a02cfbf41e20da20a200ced2bb2 100644
|
| --- a/ui/webui/resources/js/cr/ui/command.js
|
| +++ b/ui/webui/resources/js/cr/ui/command.js
|
| @@ -236,11 +236,13 @@ cr.define('cr.ui', function() {
|
| * Handles focus changes on the document.
|
| * @param {Event} e The focus event object.
|
| * @private
|
| + * @suppress {checkTypes}
|
| + * TODO(vitalyp): remove the suppression.
|
| */
|
| handleFocus_: function(e) {
|
| var target = e.target;
|
|
|
| - // Ignore focus on a menu button or command item
|
| + // Ignore focus on a menu button or command item.
|
| if (target.menu || target.command)
|
| return;
|
|
|
|
|