Skip to content

Commit

Permalink
Use jquery locally. (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
puppylpg authored Aug 30, 2020
1 parent 76469fb commit 0878832
Show file tree
Hide file tree
Showing 6 changed files with 10,370 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Critical items to know are:
- changed behaviour

## [master](https://github.com/vsoch/docsy-jekyll/tree/master)
- use jquery locally, in case that jquery is unreachable in some places (0.0.18)
- hiding sidebar links to reflect parent functionality (0.0.17)
- adding breadcrumb link to documentation root (0.0.16)
- bug with link in top breadcrumb (404) missing baseurl (0.0.15)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.17
0.0.18
2 changes: 1 addition & 1 deletion _includes/head.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<link rel="stylesheet" href="{{ site.baseurl }}/assets/css/main.css">
<link rel="stylesheet" href="{{ site.baseurl }}/assets/css/palette.css">
<script
src="https://code.jquery.com/jquery-3.3.1.min.js"
src="{{ site.baseurl }}/assets/js/jquery-3.3.1/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
</head>
2 changes: 1 addition & 1 deletion _includes/toc.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script
src="https://code.jquery.com/jquery-3.3.1.min.js"
src="{{ site.baseurl }}/assets/js/jquery-3.3.1/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>

Expand Down
Loading

0 comments on commit 0878832

Please sign in to comment.