Ship jQuery with binder
Up to now jQuery has been the only resource required by binder which users had to load from the internet. To enable binder to work in environments where no internet access is available this commit adds jQuery 2.1.3 to binders static files so no internet access is necessary anymore for using binder.
This commit is contained in:
parent
0da5e9ba89
commit
a5ebc7bad7
File diff suppressed because one or more lines are too long
|
@ -9,7 +9,7 @@
|
||||||
{% endblock header %}
|
{% endblock header %}
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<script src="http://code.jquery.com/jquery.js"></script>
|
<script src="{{ STATIC_URL }}jquery-2.1.3.min.js"></script>
|
||||||
<script src="{{ STATIC_URL }}bootstrap/js/bootstrap.min.js"></script>
|
<script src="{{ STATIC_URL }}bootstrap/js/bootstrap.min.js"></script>
|
||||||
|
|
||||||
<div class="container-fluid">
|
<div class="container-fluid">
|
||||||
|
|
Loading…
Reference in New Issue