From 560fe45087a1d7c46955f8a5c27cae8e29ddbde3 Mon Sep 17 00:00:00 2001 From: Richmond Macaspac Date: Thu, 12 Mar 2020 03:22:04 -0500 Subject: [PATCH] camelCase var fix --- src/components/itemcontextmenu.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/itemcontextmenu.js b/src/components/itemcontextmenu.js index 38f6575612..bdbcfc782b 100644 --- a/src/components/itemcontextmenu.js +++ b/src/components/itemcontextmenu.js @@ -362,13 +362,13 @@ define(["apphost", "globalize", "connectionManager", "itemHelper", "appRouter", document.body.removeChild(textArea); }; if (navigator.clipboard === undefined) { - textareaCopy(); + textAreaCopy(); } else { navigator.clipboard.writeText(downloadHref).then(function () { require(["toast"], function (toast) { toast(globalize.translate("CopyStreamURLSuccess")); }); - }, textareaCopy); + }, textAreaCopy); } getResolveFunction(resolve, id)(); break;