-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (46 loc) · 1.71 KB
/
index.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>LMHTFY | Let Me Hoogle That For You</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css">
<link rel="shortcut icon" type="image/png" href="assets/favicon.ico">
</head>
<body>
<div id="root"></div>
<script src="elm.min.js"></script>
<script>
const app = Elm.Main.init({
node: document.getElementById('root')
});
const clearSelection = () => {
if (window.getSelection) {
if (window.getSelection().empty) { // Chrome
window.getSelection().empty();
} else if (window.getSelection().removeAllRanges) { // Firefox
window.getSelection().removeAllRanges();
}
} else if (document.selection) { // IE?
document.selection.empty();
}
}
app.ports.copy && app.ports.copy.subscribe((id) => {
const elt = document.getElementById(id);
clearSelection();
if (document.selection) {
var range = document.body.createTextRange();
range.moveToElementText(elt);
range.select().createTextRange();
} else if (window.getSelection) {
var range = document.createRange();
range.selectNode(elt);
window.getSelection().addRange(range);
}
document.execCommand("copy");
clearSelection();
});
</script>
</body>
</html>