]> git.openstreetmap.org Git - osqa.git/blobdiff - forum/skins/default/templates/question_edit_tips.html
use {% url opensearch %} instead of FORUM_SCRIPT_ALIAS
[osqa.git] / forum / skins / default / templates / question_edit_tips.html
index 1a27be38079c7005e70352c25bf3b811e6c2866c..6083c12a0a2d524c48bbe43d424d7d35fa5ed6cb 100644 (file)
@@ -1,5 +1,24 @@
 <!-- question_edit_tips.html -->
 {% load i18n %}
+{% block forejs %}
+        <script type="text/javascript">
+            var currentSideBar = 'div#title_side_bar';
+            function changeSideBar(enabled_bar) {
+                $(currentSideBar).hide();
+                currentSideBar = enabled_bar;
+                $(currentSideBar).fadeIn('slow');
+
+            }
+            $(function () {
+                $('div#editor_side_bar').hide();
+                $('div#tags_side_bar').hide();
+
+                $('input#id_title').focus(function(){changeSideBar('div#title_side_bar')});
+                $('textarea#editor').focus(function(){changeSideBar('div#editor_side_bar')});
+                $('input#id_tags').focus(function(){changeSideBar('div#tags_side_bar')});
+            });
+        </script>
+{% endblock %}
 <div class="boxC" id="title_side_bar">
     <p class="subtitle darkred">{% trans "Title Tips" %}</p>
     <div>
     <p class="subtitle darkred">{% trans "What Are Tags" %}</p>
     <ul class="list-item">
         <li>
-            {% trans "Tags are words that will tell others what this question proteins to." %}
+            {% trans "Tags are words that will tell others what this question is about." %}
         </li>
         <li>
             {% trans "They will help other find your question." %}
         </li>
         <li>
-            {% trans "A question can have up to five tags but it must have at less one." %}
+            {% trans "A question can have up to five tags, but it must have at least one." %}
         </li>
     </ul>
 </div>