Fix: when hashtags is not lower case
This commit is contained in:
parent
362b5b9c69
commit
6b6d3c7307
|
@ -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) {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user