Owen Leonard
9c4f368622
This patch removes the "type" attribute from <script> tags in several staff client include files. Also removed: Obsolete "//<![CDATA[ //]]>" markers. This patch also makes minor indentation changes, so diff using the "-w" flag. To test, apply the patch and confirm that examples of affected pages work properly without any JavaScript errors in the browser console: - Installer -> Onboarding (uses installer-strings.inc, validator-strings.inc) - Patrons -> Patron details -> Change password (uses password_check.inc) - Patrons -> Patron details -> Print summary (slip-print.inc) - Circulation -> Check out (strings.inc, timepicker.inc) - Cataloging -> New from Z39.50/SRU (z3950_search.inc) Validating the HTML source of any of these pages should return no errors related to the "type" attribute. Signed-off-by: Hayley Mapley <hayleymapley@catalyst.net.nz> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
22 lines
1.2 KiB
PHP
22 lines
1.2 KiB
PHP
<script>
|
|
$(document).ready(function(){
|
|
jQuery.extend(jQuery.validator.messages, {
|
|
required: _("This field is required."),
|
|
remote: _("Please fix this field."),
|
|
email: _("Please enter a valid email address."),
|
|
url: _("Please enter a valid URL."),
|
|
date: _("Please enter a valid date."),
|
|
dateISO: _("Please enter a valid date (ISO)."),
|
|
number: _("Please enter a valid number."),
|
|
digits: _("Please enter only digits."),
|
|
equalTo: _("Please enter the same value again."),
|
|
maxlength: $.validator.format(_("Please enter no more than {0} characters.")),
|
|
minlength: $.validator.format(_("Please enter at least {0} characters.")),
|
|
rangelength: $.validator.format(_("Please enter a value between {0} and {1} characters long.")),
|
|
range: $.validator.format(_("Please enter a value between {0} and {1}.")),
|
|
max: $.validator.format(_("Please enter a value less than or equal to {0}.")),
|
|
min: $.validator.format(_("Please enter a value greater than or equal to {0}.")),
|
|
phone: $.validator.format(_("Please enter a valid phone number."))
|
|
});
|
|
});
|
|
</script>
|