Skip to content

Commit 0878832

Browse files
authored
Use jquery locally. (#26)
1 parent 76469fb commit 0878832

File tree

6 files changed

+10370
-3
lines changed

6 files changed

+10370
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ Critical items to know are:
1414
- changed behaviour
1515

1616
## [master](https://github.com/vsoch/docsy-jekyll/tree/master)
17+
- use jquery locally, in case that jquery is unreachable in some places (0.0.18)
1718
- hiding sidebar links to reflect parent functionality (0.0.17)
1819
- adding breadcrumb link to documentation root (0.0.16)
1920
- bug with link in top breadcrumb (404) missing baseurl (0.0.15)

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.0.17
1+
0.0.18

_includes/head.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
<link rel="stylesheet" href="{{ site.baseurl }}/assets/css/main.css">
3636
<link rel="stylesheet" href="{{ site.baseurl }}/assets/css/palette.css">
3737
<script
38-
src="https://code.jquery.com/jquery-3.3.1.min.js"
38+
src="{{ site.baseurl }}/assets/js/jquery-3.3.1/jquery-3.3.1.min.js"
3939
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
4040
crossorigin="anonymous"></script>
4141
</head>

_includes/toc.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<script
2-
src="https://code.jquery.com/jquery-3.3.1.min.js"
2+
src="{{ site.baseurl }}/assets/js/jquery-3.3.1/jquery-3.3.1.min.js"
33
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
44
crossorigin="anonymous"></script>
55

0 commit comments

Comments
 (0)