From a97d58ae44121f550d0d6cc6bc55df43a78cdcc5 Mon Sep 17 00:00:00 2001 From: Achim Date: Wed, 30 May 2018 12:32:32 +0200 Subject: [PATCH] Closes #2265 User Extended Field for Date does not allow entry This fix closes issue e107inc/e107#2265 which pops up only when the JS files are cached (compressed). There was a ";" missing at the end of the file after (jQuery). --- e107_web/js/password/jquery.pwdMeter.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/e107_web/js/password/jquery.pwdMeter.js b/e107_web/js/password/jquery.pwdMeter.js index 6876184a2..7026262ca 100644 --- a/e107_web/js/password/jquery.pwdMeter.js +++ b/e107_web/js/password/jquery.pwdMeter.js @@ -201,5 +201,9 @@ jQuery.fn.pwdMeter = function(options){ }); } - -})(jQuery) +/** + * ALLWAYS add a semicolon at the end, otherwise + * it may cause issues when js is cached! + * see issue e107inc/e107#2265 + */ +})(jQuery);