JS fixes in the backend calendar default view

This commit is contained in:
Alex Tselegidis 2020-12-09 14:06:47 +02:00
parent 6fe10a919b
commit 2b5ee0426f
1 changed files with 5 additions and 5 deletions

View File

@ -290,11 +290,11 @@ window.BackendCalendarDefaultView = window.BackendCalendarDefaultView || {};
// If the user has already the sync enabled then apply the proper style changes.
if ($('#select-filter-item option:selected').attr('google-sync') === 'true') {
// $('#enable-sync').removeClass('btn-light').addClass('btn-secondary enabled');
$('#enable-sync').removeClass('btn-light').addClass('btn-secondary enabled');
$('#enable-sync span').text(EALang.disable_sync);
$('#google-sync').prop('disabled', false);
} else {
// $('#enable-sync').removeClass('btn-secondary enabled').addClass('btn-light');
$('#enable-sync').removeClass('btn-secondary enabled').addClass('btn-light');
$('#enable-sync span').text(EALang.enable_sync);
$('#google-sync').prop('disabled', true);
}
@ -1068,8 +1068,8 @@ window.BackendCalendarDefaultView = window.BackendCalendarDefaultView || {};
response.unavailables.forEach(function (unavailable) {
var notes = unavailable.notes ? ' - ' + unavailable.notes : '';
if (unavailable.notes.length > 30) {
notes = unavailable.notes.substring(0, 30) + '...'
if (unavailable.notes && unavailable.notes.length > 30) {
notes = unavilable.notes.substring(0, 30) + '...'
}
var unavailabilityEvent = {