Lines Matching refs:isEndTime

2647 window.buildTimeDropdown = function(calId, isEndTime, startTimeValue, isMultiDay) {  argument
2653 if (isEndTime && startTimeValue && !isMultiDay) {
2659 const defaultText = isEndTime ? 'Same as start' : 'All day';
2666 … const disabled = (isEndTime && !isMultiDay && startMinutes >= 0 && time.minutes <= startMinutes);
2677 window.openTimeDropdown = function(calId, isEndTime) { argument
2678 const btnId = isEndTime ? 'end-time-picker-btn-' + calId : 'time-picker-btn-' + calId;
2679 const dropdownId = isEndTime ? 'end-time-dropdown-' + calId : 'time-dropdown-' + calId;
2715 dropdown.innerHTML = buildTimeDropdown(calId, isEndTime, startTime, isMultiDay);
2720 const currentValue = isEndTime ?
2731 } else if (isEndTime && startTime) {
2741 window.selectTimeOption = function(calId, isEndTime, value) { argument
2742 const inputId = isEndTime ? 'event-end-time-' + calId : 'event-time-' + calId;
2743 const btnId = isEndTime ? 'end-time-picker-btn-' + calId : 'time-picker-btn-' + calId;
2744 const dropdownId = isEndTime ? 'end-time-dropdown-' + calId : 'time-dropdown-' + calId;
2760 display.textContent = isEndTime ? 'Same as start' : 'All day';
2772 if (!isEndTime) {
2907 window.setTimePicker = function(calId, isEndTime, value) { argument
2908 const inputId = isEndTime ? 'event-end-time-' + calId : 'event-time-' + calId;
2909 const btnId = isEndTime ? 'end-time-picker-btn-' + calId : 'time-picker-btn-' + calId;
2924 display.textContent = isEndTime ? 'Same as start' : 'All day';
2929 if (isEndTime) {