mirror of https://github.com/electron/electron
24 lines
790 B
HTML
24 lines
790 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline';" />
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<div>
|
|
<h1>Clipboard copy</h1>
|
|
<i>Supports: Win, macOS, Linux <span>|</span> Process: Main, Renderer (non-sandboxed only)</i>
|
|
<div>
|
|
<div>
|
|
<button id="copy-to">Copy</button>
|
|
<input id="copy-to-input" aria-label="Click copy" placeholder="Click copy."></input>
|
|
</div>
|
|
<p>In this example we copy a phrase to the clipboard. After clicking 'Copy' use the text area to paste (CMD + V or CTRL + V) the phrase from the clipboard.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script src="./renderer.js"></script>
|
|
</body>
|
|
</html>
|