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

Unified Diff: ui/keyboard/resources/elements/kb-key-base.html

Issue 26258003: Add a full QWERTY layout. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix edge case in WebUI Created 7 years, 2 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: ui/keyboard/resources/elements/kb-key-base.html
diff --git a/ui/keyboard/resources/elements/kb-key-base.html b/ui/keyboard/resources/elements/kb-key-base.html
index fc876ce4293971a5b156d7f9e3eea28021b6ebef..56999e3a82e276cd2953b9db718899d59e7c1801 100644
--- a/ui/keyboard/resources/elements/kb-key-base.html
+++ b/ui/keyboard/resources/elements/kb-key-base.html
@@ -138,7 +138,7 @@
* @return {string}
*/
get charValue() {
- return this.invert? this.hintText : (this.char || this.textContent);
+ return this.invert ? this.hintText : (this.char || this.textContent);
},
/* Hint text value associated with the key. Typically, the value is a
@@ -146,7 +146,7 @@
* @return {string}
*/
get hintTextValue() {
- return this.invert? (this.char || this.textContent) : this.hintText;
+ return this.invert ? (this.char || this.textContent) : this.hintText;
},
populateDetails: function() {

Powered by Google App Engine
This is Rietveld 408576698