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

Unified Diff: chrome/browser/resources/chromeos/chromevox/host/chrome/braille_background.js

Issue 589133002: Make undefined Unicode characters show up in a nicer way in braille. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@moretables
Patch Set: Fix typo. 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 | « no previous file | chrome/browser/resources/chromeos/chromevox/host/chrome/braille_table.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/chromeos/chromevox/host/chrome/braille_background.js
diff --git a/chrome/browser/resources/chromeos/chromevox/host/chrome/braille_background.js b/chrome/browser/resources/chromeos/chromevox/host/chrome/braille_background.js
index 05865f16d67a1789ed59fe672ca5237f5c5ec2f7..9c497115524a317297bb99f0ddd1a72b8c17f9d5 100644
--- a/chrome/browser/resources/chromeos/chromevox/host/chrome/braille_background.js
+++ b/chrome/browser/resources/chromeos/chromevox/host/chrome/braille_background.js
@@ -145,13 +145,13 @@ cvox.BrailleBackground.prototype.refreshTranslator = function() {
var uncontractedTable = cvox.BrailleTable.getUncontracted(
tables,
table8Dot ? table8Dot : table);
- this.liblouis_.getTranslator(table.fileName, goog.bind(
+ this.liblouis_.getTranslator(table.fileNames, goog.bind(
function(translator) {
if (uncontractedTable.id === table.id) {
this.displayManager_.setTranslator(translator);
this.inputHandler_.setTranslator(translator);
} else {
- this.liblouis_.getTranslator(uncontractedTable.fileName, goog.bind(
+ this.liblouis_.getTranslator(uncontractedTable.fileNames, goog.bind(
function(uncontractedTranslator) {
this.displayManager_.setTranslator(
translator, uncontractedTranslator);
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/chromevox/host/chrome/braille_table.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698