Removed unused javascript code to toggle description from book_detail.html template.
authorMarek Stępniowski <marek@stepniowski.com>
Thu, 18 Sep 2008 20:12:30 +0000 (22:12 +0200)
committerMarek Stępniowski <marek@stepniowski.com>
Thu, 18 Sep 2008 20:12:30 +0000 (22:12 +0200)
wolnelektury/templates/catalogue/book_detail.html

index 4700cf1..2cc62e3 100644 (file)
@@ -5,25 +5,6 @@
 
 {% block bodyid %}book-detail{% endblock %}
 
-{% block extrahead %}
-    <script type="text/javascript">
-        $(function() {
-            $('#toggle-description').hover(
-                function() { $(this).css({background: '#F3F3F3', cursor: 'pointer'}); },
-                function() { $(this).css({background: '#EEE'}); }
-            ).click(function() {
-                if ($('#description').hasClass('hidden')) {
-                    $('#description').slideDown('fast').removeClass('hidden');
-                    $('p', this).html('Zwiń opis ▲');
-                } else {
-                    $('#description').slideUp('fast').addClass('hidden');
-                    $('p', this).html('Rozwiń opis ▼');
-                }
-            });
-        });
-    </script>
-{% endblock %}
-
 {% block body %}
     <h1>{{ book.title }}, {{ categories.author|join:", " }}</h1>
     <form action="{% url main_page %}" method="get" accept-charset="utf-8" id="search-form">