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

Unified Diff: chrome/browser/resources/chromeos/chromevox/chromevox/injected/keyboard_handler.js

Issue 2902033002: WebUI: Fix violations of no-extra-semi lint rule. (Closed)
Patch Set: Created 3 years, 7 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
Index: chrome/browser/resources/chromeos/chromevox/chromevox/injected/keyboard_handler.js
diff --git a/chrome/browser/resources/chromeos/chromevox/chromevox/injected/keyboard_handler.js b/chrome/browser/resources/chromeos/chromevox/chromevox/injected/keyboard_handler.js
index ff4cba6bfa43809fe75c396f40f51976f6645632..917ea4e4adb7356f01de1af8f39224c9d0b6734b 100644
--- a/chrome/browser/resources/chromeos/chromevox/chromevox/injected/keyboard_handler.js
+++ b/chrome/browser/resources/chromeos/chromevox/chromevox/injected/keyboard_handler.js
@@ -73,7 +73,7 @@ cvox.ChromeVoxKbHandler.sortKeyToFunctionsTable_ = function(
// The keys are the same length. Sort lexicographically.
return a[0].localeCompare(b[0]);
}
- };
+ }
sortingArray.sort(compareKeyStr);
return sortingArray;

Powered by Google App Engine
This is Rietveld 408576698