mirror of
https://github.com/KevinMidboe/zoff.git
synced 2025-10-29 18:00:23 +00:00
Somewhat better copy-link for soundcloud, still needs work
This commit is contained in:
@@ -355,6 +355,7 @@ function contextListener(that, event) {
|
|||||||
if(parent.id.indexOf("suggested-") > -1) suggested = true;
|
if(parent.id.indexOf("suggested-") > -1) suggested = true;
|
||||||
document.getElementsByClassName("context-menu-root")[0].setAttribute("data-suggested", suggested);
|
document.getElementsByClassName("context-menu-root")[0].setAttribute("data-suggested", suggested);
|
||||||
document.getElementsByClassName("context-menu-root")[0].setAttribute("data-id", parent.getAttribute("id").replace("suggested-", ""));
|
document.getElementsByClassName("context-menu-root")[0].setAttribute("data-id", parent.getAttribute("id").replace("suggested-", ""));
|
||||||
|
document.getElementsByClassName("context-menu-root")[0].setAttribute("data-source", parent.getAttribute("data-video-source"));
|
||||||
Helper.removeClass("#context-menu-overlay", "hide");
|
Helper.removeClass("#context-menu-overlay", "hide");
|
||||||
var left = event.pageX - document.querySelector(".context-menu-root").offsetWidth / 2;
|
var left = event.pageX - document.querySelector(".context-menu-root").offsetWidth / 2;
|
||||||
var top = event.pageY;
|
var top = event.pageY;
|
||||||
|
|||||||
@@ -602,7 +602,11 @@ function addDynamicListeners() {
|
|||||||
var id = parent.getAttribute("data-id");
|
var id = parent.getAttribute("data-id");
|
||||||
if(id != "") {
|
if(id != "") {
|
||||||
Helper.css(".copy_video_id", "display", "block");
|
Helper.css(".copy_video_id", "display", "block");
|
||||||
|
if(parent.getAttribute("data-source") == "soundcloud") {
|
||||||
|
Helper.setHtml(".copy_video_id", "https://api.soundcloud.com/tracks/" + id + "?client_id=" + api_key.soundcloud);
|
||||||
|
} else if(parent.getAttribute("data-source") == "youtube") {
|
||||||
Helper.setHtml(".copy_video_id", "https://www.youtube.com/watch?v=" + id);
|
Helper.setHtml(".copy_video_id", "https://www.youtube.com/watch?v=" + id);
|
||||||
|
}
|
||||||
var copyTextarea = document.querySelector('.copy_video_id');
|
var copyTextarea = document.querySelector('.copy_video_id');
|
||||||
copyTextarea.select();
|
copyTextarea.select();
|
||||||
var successful = document.execCommand('copy');
|
var successful = document.execCommand('copy');
|
||||||
@@ -613,6 +617,7 @@ function addDynamicListeners() {
|
|||||||
}
|
}
|
||||||
Helper.css(".copy_video_id", "display", "none");
|
Helper.css(".copy_video_id", "display", "none");
|
||||||
}
|
}
|
||||||
|
|
||||||
Helper.addClass(".context-menu-root", "hide");
|
Helper.addClass(".context-menu-root", "hide");
|
||||||
Helper.addClass("#context-menu-overlay", "hide");
|
Helper.addClass("#context-menu-overlay", "hide");
|
||||||
document.getElementsByClassName("context-menu-root")[0].setAttribute("data-id", "");
|
document.getElementsByClassName("context-menu-root")[0].setAttribute("data-id", "");
|
||||||
|
|||||||
Reference in New Issue
Block a user