Commit 90cac28c0437c72b279d4386733ceda1dcc6613e
1 parent
d7916ee0
Exists in
master
and in
1 other branch
- moved javascript libraries to static/libs. Having them out of the hierarchy was a bad idea.
Showing
13 changed files
with
13 additions
and
15 deletions
Show diff stats
static/DataTables
static/MathJax
static/bootstrap
static/fontawesome.min.js
static/js/jquery.dataTables.min.js
static/js/jquery.min.js
static/popper.min.js
templates/admin.html
... | ... | @@ -20,7 +20,7 @@ |
20 | 20 | |
21 | 21 | <!-- Scripts --> |
22 | 22 | <script defer src="/static/fontawesome.min.js"></script> |
23 | - <script defer src="/static/js/jquery.min.js"></script> | |
23 | + <script defer src="/static/jquery.min.js"></script> | |
24 | 24 | <script defer src="/static/popper.min.js"></script> |
25 | 25 | <script defer src="/static/bootstrap/js/bootstrap.min.js"></script> |
26 | 26 | <script defer src="/static/DataTables/js/jquery.dataTables.min.js"></script> | ... | ... |
templates/grade.html
... | ... | @@ -6,14 +6,13 @@ |
6 | 6 | <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> |
7 | 7 | <link rel="icon" href="/static/favicon.ico"> |
8 | 8 | |
9 | - <!-- Bootstrap --> | |
9 | + <!-- Styles --> | |
10 | 10 | <link rel="stylesheet" href="/static/bootstrap/css/bootstrap.min.css"> |
11 | 11 | <link rel="stylesheet" href="/static/css/test.css"> |
12 | 12 | |
13 | - <!-- other --> | |
14 | - <script defer src="/static/fontawesome.min.js"></script> | |
15 | 13 | <!-- Scripts --> |
16 | - <script defer src="/static/js/jquery.min.js"></script> | |
14 | + <script defer src="/static/fontawesome.min.js"></script> | |
15 | + <script defer src="/static/jquery.min.js"></script> | |
17 | 16 | <script defer src="/static/popper.min.js"></script> |
18 | 17 | <script defer src="/static/bootstrap/js/bootstrap.min.js"></script> |
19 | 18 | </head> | ... | ... |
templates/login.html
... | ... | @@ -12,7 +12,7 @@ |
12 | 12 | |
13 | 13 | <!-- Scripts --> |
14 | 14 | <script defer src="/static/fontawesome.min.js"></script> |
15 | - <script defer src="/static/js/jquery.min.js"></script> | |
15 | + <script defer src="/static/jquery.min.js"></script> | |
16 | 16 | <script defer src="/static/popper.min.js"></script> |
17 | 17 | <script defer src="/static/bootstrap/js/bootstrap.min.js"></script> |
18 | 18 | </head> | ... | ... |
templates/review.html
... | ... | @@ -22,7 +22,7 @@ |
22 | 22 | <link rel="stylesheet" href="/static/css/test.css"> |
23 | 23 | |
24 | 24 | <!-- Scripts --> |
25 | - <script defer src="/static/js/jquery.min.js"></script> | |
25 | + <script defer src="/static/jquery.min.js"></script> | |
26 | 26 | <script defer src="/static/popper.min.js"></script> |
27 | 27 | <script defer src="/static/bootstrap/js/bootstrap.min.js"></script> |
28 | 28 | <script defer src="/static/fontawesome.min.js"></script> | ... | ... |
templates/test.html
... | ... | @@ -22,7 +22,7 @@ |
22 | 22 | <link rel="stylesheet" href="/static/css/test.css"> |
23 | 23 | |
24 | 24 | <!-- Scripts --> |
25 | - <script defer src="/static/js/jquery.min.js"></script> | |
25 | + <script defer src="/static/jquery.min.js"></script> | |
26 | 26 | <script defer src="/static/popper.min.js"></script> |
27 | 27 | <script defer src="/static/bootstrap/js/bootstrap.min.js"></script> |
28 | 28 | <script defer src="/static/fontawesome.min.js"></script> | ... | ... |