@@ -, +, @@ unique holiday --- koha-tmpl/intranet-tmpl/prog/en/modules/tools/holidays.tt | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/holidays.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/holidays.tt @@ -83,16 +83,17 @@ td.repeatableyearly a.ui-state-default { background: #FFCC66 none; color : Bl -
  • +
  • [?]
    You can make an exception for this holiday rule. This means that you will be able to say that for a repeatable holiday there is one day which is going to be an exception.
  • -
  • +
  • + [?]
    You can make an exception on a range of dates repeated yearly.
    -
  • +
  • [?]
    This will delete this holiday rule. If it is a repeatable holiday, this option checks for possible exceptions. If an exception exists, this option will remove the exception and set the date to a regular holiday.
  • @@ -383,7 +384,7 @@ td.repeatableyearly a.ui-state-default { background: #FFCC66 none; color : Bl } // This function shows the "Show Holiday" panel // - function showHoliday (exceptionPosibility, dayName, day, month, year, weekDay, title, description, holidayType) { + function showHoliday (exceptionPossibility, dayName, day, month, year, weekDay, title, description, holidayType) { $("#newHoliday").slideUp("fast"); $("#showHoliday").slideDown("fast"); $('#showDaynameOutput').html(dayName); @@ -415,10 +416,10 @@ td.repeatableyearly a.ui-state-default { background: #FFCC66 none; color : Bl $("#holtype").attr("class","key holiday").html(_("Unique holiday")); } - if (exceptionPosibility == 1) { - $("#exceptionPosibility").parent().show(); + if (exceptionPossibility == 1) { + $(".exceptionPossibility").parent().show(); } else { - $("#exceptionPosibility").parent().hide(); + $(".exceptionPossibility").parent().hide(); } } --