1
0
mirror of https://github.com/e107inc/e107.git synced 2025-04-21 21:21:54 +02:00

Closes User Extended Field for Date does not allow entry

This fix closes issue  which pops up only when the JS files are cached (compressed).
There was a ";" missing at the end of the file after (jQuery).
This commit is contained in:
Achim 2018-05-30 12:32:32 +02:00 committed by GitHub
parent 8a6f1f5199
commit a97d58ae44
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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);