-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path204.html
37 lines (37 loc) · 1.25 KB
/
204.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<title>ClipboardJS Issue #695 - 2.0.4</title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Demo of Sentry keypress issue" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO"
crossorigin="anonymous"
/>
</head>
<body>
<div class="container container-fluid">
<div class="card">
<div class="card-body">
<h5 class="card-title">Demo v2.0.4</h5>
<p class="card-text">
After copying, focus is returned to the trigger button.
</p>
<div class="mb-3">
<textarea
class="form-control"
placeholder="Paste here..."
></textarea>
</div>
<button type="button" class="btn btn-primary">Copy Text</button>
</div>
</div>
</div>
<script src="https://unpkg.com/clipboard@2.0.4/dist/clipboard.min.js"></script>
<script src="./app.js"></script>
</body>
</html>