Home
last modified time | relevance | path

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

/plugin/calendar/
H A Dcalendar-main.js2662 window.buildTimeDropdown = function(calId, isEndTime, startTimeValue, isMultiDay) { argument
2668 if (isEndTime && startTimeValue && !isMultiDay) {
2674 const defaultText = isEndTime ? 'Same as start' : 'All day';
2681 … const disabled = (isEndTime && !isMultiDay && startMinutes >= 0 && time.minutes <= startMinutes);
2692 window.openTimeDropdown = function(calId, isEndTime) { argument
2693 const btnId = isEndTime ? 'end-time-picker-btn-' + calId : 'time-picker-btn-' + calId;
2694 const dropdownId = isEndTime ? 'end-time-dropdown-' + calId : 'time-dropdown-' + calId;
2730 dropdown.innerHTML = buildTimeDropdown(calId, isEndTime, startTime, isMultiDay);
2735 const currentValue = isEndTime ?
2746 } else if (isEndTime && startTime) {
[all …]