Changeset - a7a49d83b13c
[Not reviewed]
0 2 1
Brett Smith - 4 years ago 2019-12-06 15:42:05
brettcsmith@brettcsmith.org
js: Host jQuery, don't use a CDN.

jQuery 3.2.1 downloaded directly from
<https://code.jquery.com/jquery-3.2.1.js>;.

Licesnse from
<https://github.com/jquery/jquery/blob/3.2.1/LICENSE.txt>;.
2 files changed:
LICENSE
24
Changeset was too big and was cut off... Show full diff anyway
0 comments (0 inline, 0 general)
LICENSE
Show inline comments
...
 
@@ -68,6 +68,30 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 
THE SOFTWARE.
 

	
 
jQuery
 
------
 

	
 
Copyright JS Foundation and other contributors, https://js.foundation/
 

	
 
Permission is hereby granted, free of charge, to any person obtaining
 
a copy of this software and associated documentation files (the
 
"Software"), to deal in the Software without restriction, including
 
without limitation the rights to use, copy, modify, merge, publish,
 
distribute, sublicense, and/or sell copies of the Software, and to
 
permit persons to whom the Software is furnished to do so, subject to
 
the following conditions:
 

	
 
The above copyright notice and this permission notice shall be
 
included in all copies or substantial portions of the Software.
 

	
 
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
pinaxcon/templates/_scripts.html
Show inline comments
 
{% load compress %}
 
{% load staticfiles %}
 

	
 
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.js"></script>
 

	
 
{% compress js %}
 
  <script src='{% static "js/jquery.js" %}'></script>
 
  <script src='{% static "bootstrap/javascripts/bootstrap.min.js" %}'></script>
 
  <script src='{% static "js/site.js" %}'></script>
 
{% endcompress %}

Changeset was too big and was cut off... Show full diff anyway

0 comments (0 inline, 0 general)