Initial commit

This commit is contained in:
Sander Ferdinand 2018-06-26 23:48:25 +02:00
commit edb3d8f57b
55 changed files with 15544 additions and 0 deletions

View file

@ -0,0 +1,12 @@
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";
}
}