From 2b686874478d8d78542773234a44dd9a0b4f64e0 Mon Sep 17 00:00:00 2001 From: Robert Fairley Date: Nov 08 2019 02:13:11 +0000 Subject: coreos-download: drop unused copyToClipboard function Signed-off-by: Robert Fairley --- diff --git a/sites/static/js/coreos-download.js b/sites/static/js/coreos-download.js index eda6ffc..1d4aa0e 100644 --- a/sites/static/js/coreos-download.js +++ b/sites/static/js/coreos-download.js @@ -41,9 +41,6 @@ function fetchStreamData(base, stream) { return fetch(`${base}/${stream}.json`) .then(response => response.ok ? response.json() : {}); } -function copyToClipboard(text) { - navigator.clipboard.writeText(text); -} function getPrettyPlatform(platform, extension) { prettyPlatform = getMember(prettyPlatforms, platform); if (prettyPlatform != null) {