diff options
| author | Ross Allen <[email protected]> | 2013-11-05 07:23:58 -1000 |
|---|---|---|
| committer | Ross Allen <[email protected]> | 2013-11-05 07:23:58 -1000 |
| commit | 68fc2f2515b147ed0e55831f66e30e1e769e1079 (patch) | |
| tree | 89959f1e5b66228bc676702c78cab20cbb76e48b /_includes | |
| parent | 4f5a865684db1ade9185a6b4823a8e249fd616d3 (diff) | |
| download | bootstrap-68fc2f2515b147ed0e55831f66e30e1e769e1079.tar.xz bootstrap-68fc2f2515b147ed0e55831f66e30e1e769e1079.zip | |
Add protocol for jQuery to work when accessed as file
URLs without protocols get "file:" prepended when their document is
loaded as a file. Make sure the docs can always be opened by
specifying a protocol.
Diffstat (limited to '_includes')
| -rw-r--r-- | _includes/footer.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/_includes/footer.html b/_includes/footer.html index 8927c9048..14f6db9a1 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -1,7 +1,7 @@ <!-- Bootstrap core JavaScript ================================================== --> <!-- Placed at the end of the document so the pages load faster --> -<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> +<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> <script src="{{ page.base_url }}dist/js/bootstrap.js"></script> <script src="{{ page.base_url }}docs-assets/js/holder.js"></script> |
