Home
last modified time | relevance | path

Searched refs:isEndTime (Results 1 – 1 of 1) sorted by relevance

/plugin/calendar/
H A Dcalendar-main.js2766 window.buildTimeDropdown = function(calId, isEndTime, startTimeValue, isMultiDay) { argument
2772 if (isEndTime && startTimeValue && !isMultiDay) {
2778 const defaultText = isEndTime ? 'Same as start' : 'All day';
2785 … const disabled = (isEndTime && !isMultiDay && startMinutes >= 0 && time.minutes <= startMinutes);
2796 window.openTimeDropdown = function(calId, isEndTime) { argument
2797 const btnId = isEndTime ? 'end-time-picker-btn-' + calId : 'time-picker-btn-' + calId;
2798 const dropdownId = isEndTime ? 'end-time-dropdown-' + calId : 'time-dropdown-' + calId;
2834 dropdown.innerHTML = buildTimeDropdown(calId, isEndTime, startTime, isMultiDay);
2839 const currentValue = isEndTime ?
2850 } else if (isEndTime && startTime) {
[all …]