Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix filter slideUp/Down in timetable
  • Loading branch information
panagiotappl committed Jun 12, 2019
1 parent 6872464 commit f60a70c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions indico/web/client/js/legacy/libs/timetable/Filter.js
Expand Up @@ -274,8 +274,8 @@ type(
},
show: function(show) {
this.state.set(!this.state.get());
if (show) $(this.div.dom).show('slide', {direction: 'down'}, 200);
else $(this.div.dom).hide('slide', {direction: 'down'}, 200);
if (show) $(this.div.dom).slideDown(200);
else $(this.div.dom).slideUp(200);
},
toggle: function() {
this.show(!this.state.get());
Expand Down

0 comments on commit f60a70c

Please sign in to comment.