Commit d2ed50d9f522500c7a049ca457131efbb597a16a
1 parent
629c43fb
Exists in
master
and in
7 other branches
Removed dead code
Signed-off-by: Gustavo Jaruga <darksshades@gmail.com> Signed-off-by: Matheus Faria <matheus.sousa.faria@gmail.com> Signed-off-by: Matheus Fernandes <matheus.souza.fernandes@gmail.com>
Showing
1 changed file
with
0 additions
and
29 deletions
Show diff stats
colab/search/templates/search/search.html
... | ... | @@ -25,13 +25,6 @@ We must use STATIC_URL because we have a language composing the URL |
25 | 25 | {% endif %} |
26 | 26 | }); |
27 | 27 | |
28 | - $('#collapseFilters').on('hide.bs.collapse', function() { | |
29 | - $('.collapse-icon-controller').toggleClass('glyphicon-collapse-down glyphicon-collapse-up'); | |
30 | - }); | |
31 | - $('#collapseFilters').on('show.bs.collapse', function() { | |
32 | - $('.collapse-icon-controller').toggleClass('glyphicon-collapse-down glyphicon-collapse-up'); | |
33 | - }); | |
34 | - | |
35 | 28 | }); |
36 | 29 | </script> |
37 | 30 | {% endblock %} |
... | ... | @@ -74,28 +67,6 @@ We must use STATIC_URL because we have a language composing the URL |
74 | 67 | <h3>{% trans "Filters" %}</h3> |
75 | 68 | {% include "search/includes/search_filters.html" %} |
76 | 69 | </div> |
77 | - | |
78 | - <div class="col-xs-12 col-sm-12 hidden-md hidden-lg"> | |
79 | - <div class="panel-group" id="accordion"> | |
80 | - <div class="panel panel-default"> | |
81 | - <div class="panel-heading subject"> | |
82 | - <a data-toggle="collapse" data-parent="#accordion" href="#collapseFilters"> | |
83 | - <h4 class="panel-title"> | |
84 | - {% trans "Filters" %} | |
85 | - <span class="glyphicon glyphicon-collapse-down pull-right collapse-icon-controller"></span> | |
86 | - </h4> | |
87 | - </a> | |
88 | - </div> | |
89 | - <div id="collapseFilters" class="panel-collapse collapse"> | |
90 | - <div class="panel-body"> | |
91 | - {% include "search/includes/search_filters.html" %} | |
92 | - </div> | |
93 | - </div> | |
94 | - </div> | |
95 | - </div> | |
96 | - <hr /> | |
97 | - </div> | |
98 | - | |
99 | 70 | <div class="col-md-10 col-lg-10"> |
100 | 71 | <ul class="list-unstyled"> |
101 | 72 | {% for result in page.object_list %} | ... | ... |