Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(581)

Unified Diff: ui/webui/resources/js/cr/ui/command.js

Issue 566063002: Compile chrome://settings, part 8: the final battle (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@H_options_errors_6
Patch Set: rebase Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/closure_compiler/compiled_resources.gyp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « third_party/closure_compiler/compiled_resources.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698