mirror of
https://git.wownero.com/wownero/wownero-funding-system.git
synced 2024-08-15 00:53:45 +00:00
12 lines
295 B
JavaScript
12 lines
295 B
JavaScript
function clickDataHref(d){
|
|
window.location.href = d.getAttribute("data-href");
|
|
}
|
|
|
|
function hideShow(element_id) {
|
|
var x = document.getElementById(element_id);
|
|
if (x.style.display === "none") {
|
|
x.style.display = "block";
|
|
} else {
|
|
x.style.display = "none";
|
|
}
|
|
}
|