Skip to content

Commit

Permalink
ダウンロードしたhtmlのボタンを非表示にする
Browse files Browse the repository at this point in the history
  • Loading branch information
hatosh authored and ahuglajbclajep committed Nov 26, 2020
1 parent 5a9de51 commit c68f1bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const download: () => void = () => {
Array.from(doc.getElementsByTagName("button")).forEach((e) => {
const parent = e.parentNode as HTMLElement;
if (parent.className == "note-menu") {
e.style.visibility= "hidden";
e.style.visibility = "hidden";
} else {
e.style.display = "none";
}
Expand Down

0 comments on commit c68f1bb

Please sign in to comment.