Sha256: cdb4239b4da2fa3c17c31053e971ec570e55b44cd9f4ec598ff91fd7c1117ca9
Contents?: true
Size: 245 Bytes
Versions: 45
Compression:
Stored size: 245 Bytes
Contents
function virt_who_copy_configuration_to_clipboard(text) { var aux = document.createElement("textarea"); $(aux).html(text); document.body.appendChild(aux); aux.select(); document.execCommand("copy"); document.body.removeChild(aux); }
Version data entries
45 entries across 45 versions & 1 rubygems