Skip to content

Commit

Permalink
Fix FireFox hide days
Browse files Browse the repository at this point in the history
  • Loading branch information
reindertvetter committed May 3, 2017
1 parent f8e6fd2 commit 12318b4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,13 +88,13 @@ window.mypa.settings = {};

parent.hideDays = function () {
if (window.mypa.settings.deliverydays_window > 1) {
$('#mypa-date-slider-left, #mypa-date-slider-right, #mypa-tabs-container').slideUp();
$('#mypa-date-slider-left, #mypa-date-slider-right, #mypa-tabs-container').hide();
}
};

parent.showDays = function () {
if (window.mypa.settings.deliverydays_window > 1) {
$('#mypa-date-slider-left, #mypa-date-slider-right, #mypa-tabs-container').slideDown();
$('#mypa-date-slider-left, #mypa-date-slider-right, #mypa-tabs-container').show();
}
};

Expand Down

0 comments on commit 12318b4

Please sign in to comment.