display: none;
}
-div.shown-tags p {
+div.shown-tags p, div.all-tags p {
margin: -1em 0 1em 0;
text-align: right;
}
-.show-all-tags {
+.show-all-tags, .hide-all-tags {
text-decoration: underline;
padding-right: 1em;
}
return false;
});
+ $('.hide-all-tags').click(function() {
+ $(this).parent().parent().fadeOut(function() {
+ $(this).prev().fadeIn();
+ });
+ return false;
+ });
+
$('#registration-form').ajaxForm({
dataType: 'json',
beforeSubmit: function() {
<ul>
{% for tag in tags %}
<li><a href="{% catalogue_url choices tag %}">{{ tag }} ({{ tag.count }})</a></li>
- {% endfor %}
+ {% endfor %}
</ul>
+ <p><a href="#" class="hide-all-tags">Zwiń</a></p>
</div>
{% endif %}
<li>żywioły
<span class="subcategories"><a href="/katalog/zywioly">Żywioły</a>, <a href="/katalog/ogien">Ogień</a>, <a href="/katalog/ziemia">Ziemia</a>, <a href="/katalog/wiatr">Wiatr</a>, <a href="/katalog/woda">Woda</a>, <a href="/katalog/przestrzen">Przestrzeń</a></span></li>
</ol>
+ <p><a href="#" class="hide-all-tags">Zwiń</a></p>
</div>
</div>
<div class="clearboth"></div>