folder rename; future commits make sense after this

This commit is contained in:
CamTheGeek 2018-09-05 12:30:18 -04:00
parent 09d0f09d8e
commit f473a4234e
71 changed files with 0 additions and 0 deletions

View file

@ -1,23 +0,0 @@
function proposalNavbarclickDataHref(d){
if(d.classList.contains('active')){
// if the navbar button is already active, remove filter, go to proposals page
window.location.href = '/proposals'
} else {
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";
}
}
function fix_anchors(){
if(window.location.hash) {
scrollBy(0, -150)
}
}