]> git.openstreetmap.org Git - osqa.git/blobdiff - forum/skins/default/templates/question_edit_tips.html
Improvements on full text search.
[osqa.git] / forum / skins / default / templates / question_edit_tips.html
index 1a27be38079c7005e70352c25bf3b811e6c2866c..3e72a1e6c3d3e4301e6a3a407e0d649b3088e261 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>
@@ -52,7 +71,7 @@
         </li>
     </ul>
     <p class='info-box-follow-up-links'>
-        <a href="http://en.wikipedia.org/wiki/Markdown" target="_blank">{% trans "learn more about Markdown" %} </a>
+        <a href="/markdown_help" target="_blank">{% trans "learn more about Markdown" %} </a>
     </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>