This repository has been archived on 2025-04-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
home-stream/home_stream/static/main.js
2025-04-01 21:41:16 +02:00

10 lines
243 B
JavaScript

// SPDX-FileCopyrightText: 2025 Max Mehl <https://mehl.mx>
//
// SPDX-License-Identifier: GPL-3.0-only
function copyToClipboard(text, button) {
navigator.clipboard.writeText(text).then(() => {
button.classList.add("secondary");
});
}