From 99a3f9421b659f8929432bf1dd086482acba1192 Mon Sep 17 00:00:00 2001 From: Maxim Evtush <154841002+maximevtush@users.noreply.github.com> Date: Sun, 15 Jun 2025 22:16:04 +0300 Subject: [PATCH] Update jquery.validate.js --- .../wwwroot/lib/jquery-validation/dist/jquery.validate.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/LLama.Web/wwwroot/lib/jquery-validation/dist/jquery.validate.js b/LLama.Web/wwwroot/lib/jquery-validation/dist/jquery.validate.js index 12674b08b..1179a8d5e 100644 --- a/LLama.Web/wwwroot/lib/jquery-validation/dist/jquery.validate.js +++ b/LLama.Web/wwwroot/lib/jquery-validation/dist/jquery.validate.js @@ -757,7 +757,7 @@ $.extend( $.validator, { normalizer = this.settings.normalizer; } - // If normalizer is defined, then call it to retreive the changed value instead + // If normalizer is defined, then call it to retrieve the changed value instead // of using the real one. // Note that `this` in the normalizer is `element`. if ( normalizer ) { @@ -1182,7 +1182,7 @@ $.extend( $.validator, { normalizeAttributeRule: function( rules, type, method, value ) { - // Convert the value to a number for number inputs, and for text for backwards compability + // Convert the value to a number for number inputs, and for text for backwards compatibility // allows type="date" and others to be compared as strings if ( /min|max|step/.test( method ) && ( type === null || /number|range|text/.test( type ) ) ) { value = Number( value ); @@ -1598,4 +1598,4 @@ if ( $.ajaxPrefilter ) { }; } return $; -})); \ No newline at end of file +}));