| 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;
|
| };
|
|
|
|
|
|
|