1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Update src/components/itemcontextmenu.js

Co-Authored-By: Julien Machiels <julien.machiels@protonmail.com>
This commit is contained in:
Richmond Macaspac 2020-03-12 03:12:01 -05:00 committed by GitHub
parent 52e39e792f
commit 6a308ffae7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -346,7 +346,7 @@ define(["apphost", "globalize", "connectionManager", "itemHelper", "appRouter",
break;
case "copy-stream":
var downloadHref = apiClient.getItemDownloadUrl(itemId);
var textareaCopy = function () {
var textAreaCopy = function () {
var textArea = document.createElement("textarea");
textArea.value = downloadHref;
document.body.appendChild(textArea);