copy button should work this time
This commit is contained in:
parent
93491b73a1
commit
321d90aaf1
@ -23,7 +23,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
|
<p id="footerText">© CactusSMP Admins</p>
|
||||||
<div>
|
<div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
@ -1,7 +1,8 @@
|
|||||||
var copyButton = document.getElementById("copyButton")
|
var copyButton = document.getElementById("copyButton")
|
||||||
var ipField = document.getElementById("ip")
|
var ipField = document.getElementById("ip")
|
||||||
async function copyToClipboard(){
|
async function copyToClipboard(){
|
||||||
await Navigator.clipboard.writeText(ipField.value)
|
//ik this function is deprecated, but the main clipboard api doesnt work for me
|
||||||
|
Document.execCommand("copy",false,ipField.value)
|
||||||
//im too lazy to go make a proper hovertext thing, il do it later
|
//im too lazy to go make a proper hovertext thing, il do it later
|
||||||
alert("Copied!")
|
alert("Copied!")
|
||||||
}
|
}
|
||||||
|
@ -33,7 +33,13 @@
|
|||||||
}
|
}
|
||||||
#footer{
|
#footer{
|
||||||
color:grey;
|
color:grey;
|
||||||
|
bottom: 150%;
|
||||||
|
display:flex;
|
||||||
|
position:absolute;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
width:100%;
|
||||||
|
height: 10%;
|
||||||
}
|
}
|
||||||
body{
|
body{
|
||||||
margin:0;
|
margin:0;
|
||||||
@ -43,6 +49,10 @@ p {
|
|||||||
color: white;
|
color: white;
|
||||||
font-family: "Raleway", "Arial", sans-serif;
|
font-family: "Raleway", "Arial", sans-serif;
|
||||||
}
|
}
|
||||||
|
#footerText {
|
||||||
|
color:black;
|
||||||
|
font-size: 10px;
|
||||||
|
}
|
||||||
a {
|
a {
|
||||||
color: white;
|
color: white;
|
||||||
font-family: "Raleway", "Arial", sans-serif;
|
font-family: "Raleway", "Arial", sans-serif;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user