fix /watch mouseover dl link

pull/6/head
simon 2 years ago
parent a0e4a10f1f
commit 4f0452cf5f
No known key found for this signature in database
GPG Key ID: 2C15AA5E89985DD4

@ -165,8 +165,14 @@ function buildDlLink(channelContainer) {
sendUrl(currentLocation, "download");
});
dlLink.addEventListener("mouseover", e => {
let channelName = channelContainer.querySelector("#text").textContent;
e.target.title = "TA Download: " + channelName;
let subText
if (window.location.pathname == "/watch") {
subText = window.location.href;
} else {
subText = channelContainer.querySelector("#text").textContent;
};
e.target.title = "TA Download: " + subText;
});
Object.assign(dlLink.style, {
filter: "invert()",

Loading…
Cancel
Save