Lines 118-126
Link Here
|
118 |
if (exception_holidays[dateString] != null) { |
118 |
if (exception_holidays[dateString] != null) { |
119 |
return [true, "exception", "Exception: "+exception_holidays[dateString].title]; |
119 |
return [true, "exception", "Exception: "+exception_holidays[dateString].title]; |
120 |
} else if ( week_days[weekDay] != null ){ |
120 |
} else if ( week_days[weekDay] != null ){ |
121 |
return [true, "repeatableweekly", "Weekly holdiay: "+week_days[weekDay].title]; |
121 |
return [true, "repeatableweekly", "Weekly holiday: "+week_days[weekDay].title]; |
122 |
} else if ( day_month_holidays[dayMonth] != null ) { |
122 |
} else if ( day_month_holidays[dayMonth] != null ) { |
123 |
return [true, "repeatableyearly", "Yearly holdiay: "+day_month_holidays[dayMonth].title]; |
123 |
return [true, "repeatableyearly", "Yearly holiday: "+day_month_holidays[dayMonth].title]; |
124 |
} else if (holidays[dateString] != null) { |
124 |
} else if (holidays[dateString] != null) { |
125 |
return [true, "holiday", "Single holiday: "+holidays[dateString].title]; |
125 |
return [true, "holiday", "Single holiday: "+holidays[dateString].title]; |
126 |
} else { |
126 |
} else { |
Lines 412-418
td.repeatableyearly a.ui-state-default { background: #FFFF99 none; color : Bl
Link Here
|
412 |
<ul> |
412 |
<ul> |
413 |
<li>Search in the calendar the day you want to set as holiday.</li> |
413 |
<li>Search in the calendar the day you want to set as holiday.</li> |
414 |
<li>Click the date to add or edit a holiday.</li> |
414 |
<li>Click the date to add or edit a holiday.</li> |
415 |
<li>Enter a title and description for the holdiay.</li> |
415 |
<li>Enter a title and description for the holiday.</li> |
416 |
<li>Specify how the holiday should repeat.</li> |
416 |
<li>Specify how the holiday should repeat.</li> |
417 |
<li>Click Save to finish.</li> |
417 |
<li>Click Save to finish.</li> |
418 |
</ul> |
418 |
</ul> |
419 |
- |
|
|