mirror of
https://git.wownero.com/wownero/wownero-funding-system.git
synced 2024-08-15 00:53:45 +00:00
Initial commit
This commit is contained in:
commit
edb3d8f57b
55 changed files with 15544 additions and 0 deletions
12
wowfunding/static/js/app.js
Normal file
12
wowfunding/static/js/app.js
Normal 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";
|
||||
}
|
||||
}
|
6
wowfunding/static/js/bootstrap.min.js
vendored
Normal file
6
wowfunding/static/js/bootstrap.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
4
wowfunding/static/js/jquery-3.2.1.slim.min.js
vendored
Normal file
4
wowfunding/static/js/jquery-3.2.1.slim.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
2028
wowfunding/static/js/simplemde.js
Normal file
2028
wowfunding/static/js/simplemde.js
Normal file
File diff suppressed because it is too large
Load diff
15
wowfunding/static/js/simplemde.min.js
vendored
Normal file
15
wowfunding/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