##// END OF EJS Templates
hide pager straight down...
Min RK -
Show More
@@ -57,8 +57,13 b' define(['
57 this.pager_element.bind('collapse_pager', function (event, extrap) {
57 this.pager_element.bind('collapse_pager', function (event, extrap) {
58 // Animate hiding of the pager.
58 // Animate hiding of the pager.
59 var time = (extrap && extrap.duration) ? extrap.duration : 'fast';
59 var time = (extrap && extrap.duration) ? extrap.duration : 'fast';
60 that.pager_element.hide(time, function() {
60 that.pager_element.animate({
61 $('.end_space').css('height', that._default_end_space);
61 height: 'toggle'
62 }, {
63 duration: time,
64 done: function() {
65 $('.end_space').css('height', that._default_end_space);
66 }
62 });
67 });
63 });
68 });
64
69
General Comments 0
You need to be logged in to leave comments. Login now