View | Details | Raw Unified | Return to bug 27937
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/js/calendar.js (-1 / +2 lines)
Lines 192-197 $(document).ready(function () { Link Here
192
    }).on("change", function () {
192
    }).on("change", function () {
193
        if (!is_valid_date($(this).val())) {
193
        if (!is_valid_date($(this).val())) {
194
            $(this).val("");
194
            $(this).val("");
195
        } else {
196
          $(this).datepicker("setDate",$(this).val());
195
        }
197
        }
196
    });
198
    });
197
    // http://jqueryui.com/demos/datepicker/#date-range
199
    // http://jqueryui.com/demos/datepicker/#date-range
198
- 

Return to bug 27937