blob: f2d5fd0a25d7c52f797ef642563468bc45b3c116 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at <http://mozilla.org/MPL/2.0/>. */
/**
* Clipboard function taken from
* https://searchfox.org/mozilla-central/source/devtools/shared/platform/clipboard.js
*/
// @flow
export function copyToTheClipboard(string: string): void {
const doCopy = function(e: any) {
e.clipboardData.setData("text/plain", string);
e.preventDefault();
};
document.addEventListener("copy", doCopy);
document.execCommand("copy", false, null);
document.removeEventListener("copy", doCopy);
}
|