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

Unified Diff: chrome/browser/resources/chromeos/chromevox/braille/braille_table.js

Issue 2909503003: WebUI: Enable ESLint rule for missing semicolons. (Closed)
Patch Set: Undo local_ntp changes from this CL. 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/braille/braille_table.js
diff --git a/chrome/browser/resources/chromeos/chromevox/braille/braille_table.js b/chrome/browser/resources/chromeos/chromevox/braille/braille_table.js
index 8957d1c241f6f486e18196e1db28cd03fac27ae1..2098b86d1c670bbb921eba5b61a535564d20f3ba 100644
--- a/chrome/browser/resources/chromeos/chromevox/braille/braille_table.js
+++ b/chrome/browser/resources/chromeos/chromevox/braille/braille_table.js
@@ -76,7 +76,7 @@ cvox.BrailleTable.getAll = function(callback) {
* @return {cvox.BrailleTable.Table} The found table, or null if not found.
*/
cvox.BrailleTable.forId = function(tables, id) {
- return tables.filter(function(table) { return table.id === id })[0] || null;
+ return tables.filter(function(table) { return table.id === id; })[0] || null;
};

Powered by Google App Engine
This is Rietveld 408576698