3/4 buttons solved

fixing #1150
This commit is contained in:
daria 2023-07-19 13:50:53 +03:00
parent 5e5658d0c3
commit e1166268fb
2 changed files with 9 additions and 6 deletions

View File

@ -656,5 +656,6 @@
}
}
}
}

View File

@ -716,10 +716,11 @@ define([
}
var dropdownConfig = {
text: '',
options: options, // Entries displayed in the menu
options: options,
common: common,
buttonCls: 'btn btn-default fa fa-gear small cp-calendar-actions'
};
buttonCls: 'btn btn-default fa fa-gear small cp-calendar-actions',
'aria-label': 'settings', // ????
};
return UIElements.createDropdown(dropdownConfig)[0];
};
var makeCalendarEntry = function (id, teamId) {
@ -1192,10 +1193,11 @@ ICS ==> create a new event with the same UID and a RECURRENCE-ID field (with a v
}).appendTo(APP.toolbar.$bottomL);
// Change page
var goLeft = h('button.fa.fa-chevron-left');
var goRight = h('button.fa.fa-chevron-right');
// XXX
var goLeft = h('button.fa.fa-chevron-left',{'aria-label': 'left'});
var goRight = h('button.fa.fa-chevron-right', {'aria-label': 'right'});
var goToday = h('button', Messages.calendar_today);
var goDate = h('button.fa.fa-calendar');
var goDate = h('button.fa.fa-calendar',{'aria-label': 'date'});
$(goLeft).click(function () {
cal.prev();
updateDateRange();