copy button should work this time
This commit is contained in:
parent
93491b73a1
commit
321d90aaf1
@ -23,7 +23,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
|
||||
<p id="footerText">© CactusSMP Admins</p>
|
||||
<div>
|
||||
</body>
|
||||
</html>
|
@ -1,7 +1,8 @@
|
||||
var copyButton = document.getElementById("copyButton")
|
||||
var ipField = document.getElementById("ip")
|
||||
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
|
||||
alert("Copied!")
|
||||
}
|
||||
|
@ -33,7 +33,13 @@
|
||||
}
|
||||
#footer{
|
||||
color:grey;
|
||||
|
||||
bottom: 150%;
|
||||
display:flex;
|
||||
position:absolute;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
width:100%;
|
||||
height: 10%;
|
||||
}
|
||||
body{
|
||||
margin:0;
|
||||
@ -43,6 +49,10 @@ p {
|
||||
color: white;
|
||||
font-family: "Raleway", "Arial", sans-serif;
|
||||
}
|
||||
#footerText {
|
||||
color:black;
|
||||
font-size: 10px;
|
||||
}
|
||||
a {
|
||||
color: white;
|
||||
font-family: "Raleway", "Arial", sans-serif;
|
||||
|
Loading…
x
Reference in New Issue
Block a user