changeset 1139:bb82177cc236

Issue #92 missing javascript for new post box.
author Brian Neal <bgneal@gmail.com>
date Thu, 27 Oct 2016 19:47:20 -0500
parents 0e93eaa323e7
children 97f92a589de7
files sg101/templates/bio/edit_profile.html sg101/templates/contests/contest_detail.html sg101/templates/gcalendar/event.html sg101/templates/membermap/index.html sg101/templates/messages/compose.html sg101/templates/messages/view_message.html sg101/templates/polls/poll_detail.html sg101/templates/potd/view.html
diffstat 8 files changed, 8 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/sg101/templates/bio/edit_profile.html	Sun Oct 23 12:17:03 2016 -0500
+++ b/sg101/templates/bio/edit_profile.html	Thu Oct 27 19:47:20 2016 -0500
@@ -176,5 +176,6 @@
 {% script_tags 'jquery-ui' %}
 <script src="{% static "js/bio.js" %}"></script>
 <script src="{% static "js/timezone.js" %}"></script>
+<script src="{% static "js/jquery.form.min.js" %}"></script>
 <script src="{% static "js/v3/post_box.js" %}"></script>
 {% endblock %}
--- a/sg101/templates/contests/contest_detail.html	Sun Oct 23 12:17:03 2016 -0500
+++ b/sg101/templates/contests/contest_detail.html	Thu Oct 27 19:47:20 2016 -0500
@@ -99,6 +99,7 @@
 {% block custom_js %}
 {% if contest.is_active %}
    <script type="text/javascript" src="{% static "js/comments.js" %}"></script>
+   <script src="{% static "js/jquery.form.min.js" %}"></script>
    <script src="{% static "js/v3/post_box.js" %}"></script>
    <script type="text/javascript">
       var contest_id = {{ contest.id }};
--- a/sg101/templates/gcalendar/event.html	Sun Oct 23 12:17:03 2016 -0500
+++ b/sg101/templates/gcalendar/event.html	Thu Oct 27 19:47:20 2016 -0500
@@ -138,6 +138,6 @@
 {% js_tags 'jquery-ui' %}
 <script src="{% static "js/timezone.js" %}"></script>
 <script src="{% static "js/gcalendar.js" %}"></script>
+<script src="{% static "js/jquery.form.min.js" %}"></script>
 <script src="{% static "js/v3/post_box.js" %}"></script>
-<script src="{% static "js/jquery.form.min.js" %}"></script>
 {% endblock %}
--- a/sg101/templates/membermap/index.html	Sun Oct 23 12:17:03 2016 -0500
+++ b/sg101/templates/membermap/index.html	Thu Oct 27 19:47:20 2016 -0500
@@ -76,6 +76,7 @@
 {% endblock %}
 {% block custom_js %}
 <script src="{% static "js/membermap.js" %}"></script>
+<script src="{% static "js/jquery.form.min.js" %}"></script>
 <script src="{% static "js/v3/post_box.js" %}"></script>
 <script src="https://maps.google.com/maps?file=api&amp;v=2&amp;key=ABQIAAAAql_1Xw9MGW3mOxzo8gLb3hSrh5-ALlu4lmYDsscYaAokjyRNqBRaVcqVr3jaDgMRVSK_3HydK9tYWw" type="text/javascript"></script>
 <script type="text/javascript">
--- a/sg101/templates/messages/compose.html	Sun Oct 23 12:17:03 2016 -0500
+++ b/sg101/templates/messages/compose.html	Thu Oct 27 19:47:20 2016 -0500
@@ -47,5 +47,6 @@
 {% block custom_js %}
 {% js_tags 'jquery-ui' %}
 <script src="{% static "js/v3/autocomplete.js" %}"></script>
+<script src="{% static "js/jquery.form.min.js" %}"></script>
 <script src="{% static "js/v3/post_box.js" %}"></script>
 {% endblock %}
--- a/sg101/templates/messages/view_message.html	Sun Oct 23 12:17:03 2016 -0500
+++ b/sg101/templates/messages/view_message.html	Thu Oct 27 19:47:20 2016 -0500
@@ -62,6 +62,7 @@
 
 {% block custom_js %}
 {% if form %}
+   <script src="{% static "js/jquery.form.min.js" %}"></script>
    <script src="{% static "js/v3/post_box.js" %}"></script>
 {% endif %}
 {% endblock %}
--- a/sg101/templates/polls/poll_detail.html	Sun Oct 23 12:17:03 2016 -0500
+++ b/sg101/templates/polls/poll_detail.html	Thu Oct 27 19:47:20 2016 -0500
@@ -74,6 +74,7 @@
 {% block custom_js %}
    {% if poll.is_open %}
       <script type="text/javascript" src="{% static "js/comments.js" %}"></script>
+      <script src="{% static "js/jquery.form.min.js" %}"></script>
       <script src="{% static "js/v3/post_box.js" %}"></script>
    {% endif %}
 {% endblock %}
--- a/sg101/templates/potd/view.html	Sun Oct 23 12:17:03 2016 -0500
+++ b/sg101/templates/potd/view.html	Thu Oct 27 19:47:20 2016 -0500
@@ -84,5 +84,6 @@
 {% endblock %}
 {% block custom_js %}
    <script src="{% static "js/comments.js" %}"></script>
+   <script src="{% static "js/jquery.form.min.js" %}"></script>
    <script src="{% static "js/v3/post_box.js" %}"></script>
 {% endblock %}