Commit 90cac28c0437c72b279d4386733ceda1dcc6613e

Authored by Miguel Barão
1 parent d7916ee0
Exists in master and in 1 other branch dev

- moved javascript libraries to static/libs. Having them out of the hierarchy was a bad idea.

static/DataTables
1   -/Users/mjsb/Web/DataTables-1.10.16/
2 1 \ No newline at end of file
  2 +libs/DataTables-1.10.16/
3 3 \ No newline at end of file
... ...
static/MathJax
1   -/Users/mjsb/Web/MathJax-2.7.4/
2 1 \ No newline at end of file
  2 +libs/MathJax-2.7.4/
3 3 \ No newline at end of file
... ...
static/bootstrap
1   -/Users/mjsb/Web/bootstrap-4.1.0/
2 1 \ No newline at end of file
  2 +libs/bootstrap-4.1.0/
3 3 \ No newline at end of file
... ...
static/fontawesome.min.js
1   -/Users/mjsb/Web/fontawesome-free-5.0.10/svg-with-js/js/fontawesome-all.js
2 1 \ No newline at end of file
  2 +libs/fontawesome-free-5.0.10/svg-with-js/js/fontawesome-all.js
3 3 \ No newline at end of file
... ...
static/jquery.min.js 0 → 120000
... ... @@ -0,0 +1 @@
  1 +libs/jquery-3.3.1.min.js
0 2 \ No newline at end of file
... ...
static/js/jquery.dataTables.min.js
... ... @@ -1 +0,0 @@
1   -/Users/mjsb/Web/jquery.dataTables.min.js
2 0 \ No newline at end of file
static/js/jquery.min.js
... ... @@ -1 +0,0 @@
1   -/Users/mjsb/Web/jquery-3.3.1.min.js
2 0 \ No newline at end of file
static/popper.min.js
1   -/Users/mjsb/Web/popper.min.js
2 1 \ No newline at end of file
  2 +libs/popper.min.js
3 3 \ No newline at end of file
... ...
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>
... ...