diff options
author | Alex Yatskov <alex@foosoft.net> | 2016-04-24 20:50:27 -0700 |
---|---|---|
committer | Alex Yatskov <alex@foosoft.net> | 2016-04-24 20:50:27 -0700 |
commit | f466fe721885877d473e66d22caef060919524ea (patch) | |
tree | 08f27ea2a89794da5ab376401e1ce743f12d6d20 /ext/fg | |
parent | 62c2120286ddc39110b8ab01c4248ab5a8604b66 (diff) |
Styling work
Diffstat (limited to 'ext/fg')
-rw-r--r-- | ext/fg/css/frame.css | 10 | ||||
-rw-r--r-- | ext/fg/js/client.js | 4 |
2 files changed, 7 insertions, 7 deletions
diff --git a/ext/fg/css/frame.css b/ext/fg/css/frame.css index ace8aae1..832e189a 100644 --- a/ext/fg/css/frame.css +++ b/ext/fg/css/frame.css @@ -43,18 +43,16 @@ body { display: inline-block; } -.kanji { - background-color: #eee; - display: inline-block; +.kanji-glyph { font-family: "KanjiStrokeOrders"; font-size: 140px; line-height: 140px; vertical-align: top; } -.readings { - display: inline-block; - vertical-align: top; +.kanji-info { + float: left; + display: inline-block; } .tag { diff --git a/ext/fg/js/client.js b/ext/fg/js/client.js index 2355cf81..fdb46acb 100644 --- a/ext/fg/js/client.js +++ b/ext/fg/js/client.js @@ -82,7 +82,9 @@ class Client { displayKanji: this.displayKanji }; - handlers[action].call(this, data); + if (handlers.hasOwnProperty(action)) { + handlers[action].call(this, data); + } } searchAt(point) { |