Skip to content

Commit

Permalink
Merge pull request #1517 from sudwebdesign/develop-refreshCalendarApp…
Browse files Browse the repository at this point in the history
…ointments-current2active-month_view-fix

Fix refresh Appointments MONTH calendarView : current2active
  • Loading branch information
alextselegidis authored May 11, 2024
2 parents 4c7ca40 + 4f028d8 commit 4542251
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions assets/js/utils/calendar_default_view.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ App.Utils.CalendarDefaultView = (function () {
$calendar,
$selectFilterItem.val(),
$selectFilterItem.find('option:selected').attr('type'),
calendarView.currentStart,
calendarView.currentEnd,
calendarView.activeStart,
calendarView.activeEnd,
);
});

Expand Down Expand Up @@ -1153,8 +1153,8 @@ App.Utils.CalendarDefaultView = (function () {
$calendar,
$selectFilterItem.val(),
$('#select-filter-item option:selected').attr('type'),
fullCalendar.view.currentStart,
fullCalendar.view.currentEnd,
fullCalendar.view.activeStart,
fullCalendar.view.activeEnd,
);

$(window).trigger('resize'); // Places the footer on the bottom.
Expand Down Expand Up @@ -1641,8 +1641,8 @@ App.Utils.CalendarDefaultView = (function () {
$calendar,
$selectFilterItem.val(),
$selectFilterItem.find('option:selected').attr('type'),
fullCalendar.view.currentStart,
fullCalendar.view.currentEnd,
fullCalendar.view.activeStart,
fullCalendar.view.activeEnd,
);
}, 60000);
}
Expand Down

0 comments on commit 4542251

Please sign in to comment.