Merge pull request #151 from digitigrafo/gh-pages

Update of jquery and anchor js
This commit is contained in:
Tom Johnson 2019-05-25 22:46:22 -07:00 committed by GitHub
commit ac9d5df2c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 9 additions and 2 deletions

2
.gitignore vendored
View File

@ -4,3 +4,5 @@ _site/
_pdf _pdf
.DS_Store .DS_Store
.idea .idea
vendor/
.bundle/

View File

@ -1,3 +1,7 @@
source "https://rubygems.org" source "https://rubygems.org"
# to publish on github page
gem 'github-pages', group: :jekyll_plugins gem 'github-pages', group: :jekyll_plugins
# to publich without github page
#gem "jekyll"

View File

@ -33,6 +33,7 @@ port: 4000
exclude: exclude:
- .idea/ - .idea/
- .gitignore - .gitignore
- vendor
# these are the files and directories that jekyll will exclude from the build # these are the files and directories that jekyll will exclude from the build
feedback_subject_line: Jekyll documentation theme feedback_subject_line: Jekyll documentation theme

View File

@ -16,7 +16,7 @@
<!-- most color styles are extracted out to here --> <!-- most color styles are extracted out to here -->
<link rel="stylesheet" href="css/theme-blue.css"> <link rel="stylesheet" href="css/theme-blue.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-cookie/1.4.1/jquery.cookie.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-cookie/1.4.1/jquery.cookie.min.js"></script>
<script src="{{ "js/jquery.navgoco.min.js" }}"></script> <script src="{{ "js/jquery.navgoco.min.js" }}"></script>
@ -25,7 +25,7 @@
<!-- Latest compiled and minified JavaScript --> <!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<!-- Anchor.js --> <!-- Anchor.js -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/anchor-js/2.0.0/anchor.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/anchor-js/4.2.0/anchor.min.js"></script>
<script src="{{ "js/toc.js" }}"></script> <script src="{{ "js/toc.js" }}"></script>
<script src="{{ "js/customscripts.js" }}"></script> <script src="{{ "js/customscripts.js" }}"></script>