Fix: when hashtags is not lower case

This commit is contained in:
Cutls 2019-08-22 00:00:08 +09:00
parent 362b5b9c69
commit 6b6d3c7307

View File

@ -10,7 +10,7 @@ if (location.search) {
} }
//よく使うタグ //よく使うタグ
function tagShow(tag) { function tagShow(tag) {
$("[data-tag=" + decodeURI(tag) + "]").toggleClass("hide"); $("[data-tag=" + decodeURI(tag).toLowerCase() + "]").toggleClass("hide");
} }
//タグ追加 //タグ追加
function tagPin(tag) { function tagPin(tag) {