diff options
author | Pavel Grunt <pgrunt@redhat.com> | 2016-08-30 16:31:20 +0200 |
---|---|---|
committer | Pavel Grunt <pgrunt@redhat.com> | 2016-08-30 16:52:59 +0200 |
commit | 0753a7a1631bd091cebfb4d17ff205d0553ec4b3 (patch) | |
tree | a7e620eeadeab1d953411082193d2311ff4eeae4 | |
parent | 1a9bb5d6bd395fd6fe643f94abe9d1d42b7f00b1 (diff) |
use https to get jquery
-rw-r--r-- | spice-space/templates/base.html | 2 | ||||
-rw-r--r-- | spice-space/templates/search.html | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/spice-space/templates/base.html b/spice-space/templates/base.html index 9ac39dd..8db2f58 100644 --- a/spice-space/templates/base.html +++ b/spice-space/templates/base.html @@ -15,8 +15,8 @@ {% if FEED_ALL_RSS %} <link href="{{ FEED_DOMAIN }}/{{ FEED_ALL_RSS }}" type="application/rss+xml" rel="alternate" title="{{ SITENAME }} RSS Feed" /> {% endif %} + <script src="https://code.jquery.com/jquery.min.js"></script> {% block script %} - <script src="http://code.jquery.com/jquery.min.js"></script> <script> function validateForm(query) { diff --git a/spice-space/templates/search.html b/spice-space/templates/search.html index 741ab26..0c9a739 100644 --- a/spice-space/templates/search.html +++ b/spice-space/templates/search.html @@ -1,7 +1,6 @@ {% extends 'base.html' %}
{% block script %}
-<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
<script type="text/javascript" src="{{ SITEURL }}/theme/tipuesearch/tipuesearch_set.js"></script>
<script type="text/javascript" src="{{ SITEURL }}/theme/tipuesearch/tipuesearch.js"></script>
<script>
|