Removed unnecessary call for calendar events.

This commit is contained in:
alext 2018-04-23 09:52:47 +02:00
parent cfaafc2674
commit 5f56eb4c2d
1 changed files with 0 additions and 7 deletions

View File

@ -211,13 +211,6 @@ window.BackendCalendarDefaultView = window.BackendCalendarDefaultView || {};
* Load the appointments that correspond to the select filter item and display them on the calendar.
*/
$('#select-filter-item').change(function () {
_refreshCalendarAppointments(
$('#calendar'),
$('#select-filter-item').val(),
$('#select-filter-item option:selected').attr('type'),
$('#calendar').fullCalendar('getView').start,
$('#calendar').fullCalendar('getView').end);
// If current value is service, then the sync buttons must be disabled.
if ($('#select-filter-item option:selected').attr('type') === FILTER_TYPE_SERVICE) {
$('#google-sync, #enable-sync, #insert-appointment, #insert-unavailable').prop('disabled', true);