From c0b49a109021a9d322548053002856fc59956f06 Mon Sep 17 00:00:00 2001 From: Robert Date: Tue, 5 Jan 2021 02:47:04 +0100 Subject: [PATCH] fixed onyomi --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 1c2d67e4..0d554817 100644 --- a/index.html +++ b/index.html @@ -181,7 +181,7 @@ $("#kanji_meaning").html((typeof meaning !== typeof undefined) ? meaning : "Apparently this has no meaning. Tell me about it."); $("#kun_yomi").html((typeof kun !== typeof undefined) ? "Kun: " + kun : ""); - $("#on_yomi").html((typeof on !== typeof undefined) ? "On: " + kun : ""); + $("#on_yomi").html((typeof on !== typeof undefined) ? "On: " + on : ""); }); }