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

Unified Diff: chrome/browser/resources/chromeos/keyboard_overlay.js

Issue 10388182: Fix the keyboard overlay not working. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Change script inclusions order Created 8 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
« no previous file with comments | « chrome/browser/resources/chromeos/keyboard_overlay.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/chromeos/keyboard_overlay.js
diff --git a/chrome/browser/resources/chromeos/keyboard_overlay.js b/chrome/browser/resources/chromeos/keyboard_overlay.js
index 5fe5967d325da3b5a7f80c89962ace347017cbc9..4a6707dd2d3c2bc76d794b0fdc704a31ca2f53d1 100644
--- a/chrome/browser/resources/chromeos/keyboard_overlay.js
+++ b/chrome/browser/resources/chromeos/keyboard_overlay.js
@@ -345,7 +345,7 @@ function update(modifiers) {
var shortcutText = $(shortcutTextId(identifier, i));
if (shortcutId) {
shortcutText.style.visibility = 'visible';
- shortcutText.textContent = loadTimeData.getString('shortcutId');
+ shortcutText.textContent = loadTimeData.getString(shortcutId);
} else {
shortcutText.style.visibility = 'hidden';
}
« no previous file with comments | « chrome/browser/resources/chromeos/keyboard_overlay.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698