Index: third_party/google_input_tools/src/chrome/os/inputview/elements/content/candidate.js |
diff --git a/third_party/google_input_tools/src/chrome/os/inputview/elements/content/candidate.js b/third_party/google_input_tools/src/chrome/os/inputview/elements/content/candidate.js |
index 0e57c144b2499e4083579ee73c948726228ebe19..96ade6b1a5701f555bb87f3ecd8b528a8b22c846 100644 |
--- a/third_party/google_input_tools/src/chrome/os/inputview/elements/content/candidate.js |
+++ b/third_party/google_input_tools/src/chrome/os/inputview/elements/content/candidate.js |
@@ -90,6 +90,9 @@ Candidate.prototype.createDom = function() { |
if (this.candidate['isEmoji']) { |
goog.dom.classlist.add(elem, Css.EMOJI_FONT); |
} |
+ if (this.candidateType == Candidate.Type.NUMBER) { |
+ goog.dom.classlist.add(elem, Css.CANDIDATE_NUMBER); |
+ } |
this.wrapper_ = dom.createDom('div', { |
'class': Css.CANDIDATE_INTERNAL_WRAPPER |
}, this.candidate[Name.CANDIDATE]); |