This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function copyToClipboard (text) { | |
window.prompt ("Copy to clipboard: Ctrl+C, Enter", text); | |
} | |
var xhr = new XMLHttpRequest(); | |
xhr.onload = function(e) { | |
if (this.status == 200) { | |
var xhr2 = new XMLHttpRequest(); | |
xhr2.onreadystatechange = function() { | |
switch (xhr2.readyState) { | |
case 0: // uninitialized |