-
Notifications
You must be signed in to change notification settings - Fork 8
/
test.html
30 lines (26 loc) · 836 Bytes
/
test.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
<!doctype html>
<html>
<head>
<title>Prism Copy to Clipboard sample</title>
<link rel="stylesheet" href="prism.css" type="text/css" media="screen" />
<link rel="stylesheet" href="toolbar.css" type="text/css" media="screen" />
<script type="text/javascript" src="prism.js"></script>
<!-- Adapted from http://dev.misterphilip.com/prism/plugins/toolbar/ -->
<script type="text/javascript" src="toolbar.js"></script>
<!-- Download at http://zeroclipboard.org/
Be sure to include ZeroClipboard.swf and ZeroClipboard.min.map
within the same directory your ZeroClipboard.js file
-->
<script type="text/javascript" src="ZeroClipboard.js"></script>
</head>
<body>
<pre class="code-toolbar">
<code class="language-javascript">
(function () {
var msg = "A simple test";
console.log(msg);
})();
</code>
</pre>
</body>
</html>