mirror of
https://git.wownero.com/wownero/wownero-funding-system.git
synced 2024-08-15 00:53:45 +00:00
folder rename; future commits make sense after this
This commit is contained in:
parent
09d0f09d8e
commit
f473a4234e
71 changed files with 0 additions and 0 deletions
23
funding/static/js/app.js
Normal file
23
funding/static/js/app.js
Normal file
|
@ -0,0 +1,23 @@
|
|||
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)
|
||||
}
|
||||
}
|
6
funding/static/js/bootstrap.min.js
vendored
Normal file
6
funding/static/js/bootstrap.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
4
funding/static/js/jquery-3.2.1.slim.min.js
vendored
Normal file
4
funding/static/js/jquery-3.2.1.slim.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
2028
funding/static/js/simplemde.js
Normal file
2028
funding/static/js/simplemde.js
Normal file
File diff suppressed because it is too large
Load diff
15
funding/static/js/simplemde.min.js
vendored
Normal file
15
funding/static/js/simplemde.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
Loading…
Add table
Add a link
Reference in a new issue