fix the icon of the download btn
This commit is contained in:
parent
2258ed0659
commit
4ead0fd52c
1 changed files with 7 additions and 0 deletions
|
@ -85,6 +85,13 @@ const main = () => {
|
||||||
const downloadBtn = btnsDiv.querySelector("button, .button") as HTMLElement
|
const downloadBtn = btnsDiv.querySelector("button, .button") as HTMLElement
|
||||||
downloadBtn.onclick = null
|
downloadBtn.onclick = null
|
||||||
|
|
||||||
|
// fix the icon of the download btn
|
||||||
|
// if the `downloadBtn` seleted was a `Print` btn, replace the `print` icon with the `download` icon
|
||||||
|
const svgPath: SVGPathElement = downloadBtn.querySelector("svg > path")
|
||||||
|
if(svgPath) {
|
||||||
|
svgPath.setAttribute("d", "M9.6 2.4h4.8V12h2.784l-5.18 5.18L6.823 12H9.6V2.4zM19.2 19.2H4.8v2.4h14.4v-2.4z")
|
||||||
|
}
|
||||||
|
|
||||||
const imgType = getImgType() || "svg"
|
const imgType = getImgType() || "svg"
|
||||||
|
|
||||||
const sheetImgURLs = Array.from({ length: getPagesNumber(scorePlayer) }).fill(null).map((_, i) => {
|
const sheetImgURLs = Array.from({ length: getPagesNumber(scorePlayer) }).fill(null).map((_, i) => {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue