wownero-funding-system/wowfunding/static/js/app.js
Sander Ferdinand edb3d8f57b Initial commit
2018-06-27 01:16:29 +02:00

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";
}
}