mirror of
https://github.com/ivabus/www
synced 2024-11-10 07:15:15 +03:00
Modified script to include https again
This commit is contained in:
parent
e7aaf58106
commit
bd38fe5a19
|
@ -7,6 +7,9 @@
|
|||
|
||||
$(".copy-button").on("click", function() {
|
||||
var copyText = $(this).siblings(".copy-text").text();
|
||||
// Update the command to copy 'sh <(curl https://tea.xyz)'
|
||||
copyText = copyText.replace("sh <(curl tea.xyz)", "sh <(curl https://tea.xyz)");
|
||||
|
||||
var tempInput = document.createElement("input");
|
||||
tempInput.style = "position: absolute; left: -1000px; top: -1000px";
|
||||
tempInput.value = copyText;
|
||||
|
|
Loading…
Reference in a new issue