Initial commit
This commit is contained in:
commit
55f4b4f9d5
3 changed files with 159 additions and 0 deletions
12
includes/inc-bottom.php
Normal file
12
includes/inc-bottom.php
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
<script>
|
||||
function Copy(param) {
|
||||
var copyText = document.getElementById(param);
|
||||
copyText.select();
|
||||
copyText.setSelectionRange(0, 99999); // For mobile devices
|
||||
navigator.clipboard.writeText(copyText.value);
|
||||
// alert("Copied: " + copyText.value);
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
</body></html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue