-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcopy.js
15 lines (15 loc) · 825 Bytes
/
copy.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
function copy() {
var content = document.getElementById('textOutput');
content.select();
document.execCommand('copy');
}
/*
_ _ _ _ _ _
| | | | (_) | | (_| |
_ __ ___ __ _ __| | ___ | |__ _ _ ___ _ _ __| | ___ _ __ ___ __ _ _| | __
| '_ ` _ \ / _` |/ _` |/ _ \ | '_ \| | | | / __| | '__| |/ _ | '_ ` _ \ / _` | | |/ /
| | | | | | (_| | (_| | __/ | |_) | |_| | \__ | | | | | __| | | | | | (_| | | |
|_| |_| |_|\__,_|\__,_|\___| |_.__/ \__, | |___|_|_| |_|\___|_| |_| |_|\__,_|_|_|\_\
__/ |
|___/
*/