Fix Uncaught RangeError

This commit is contained in:
xlivevil 2022-02-25 01:12:22 +08:00
parent 86b779f39b
commit 695ce83681
No known key found for this signature in database
GPG Key ID: D4D073C8E61991AF
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ $(".datepicker").datepicker({
if (results) { if (results) {
pubDate = new Date(results[1], parseInt(results[2], 10) - 1, results[3]) || new Date(this.value); pubDate = new Date(results[1], parseInt(results[2], 10) - 1, results[3]) || new Date(this.value);
$(this).next('input') $(this).next('input')
.val(pubDate.toLocaleDateString(language)) .val(pubDate.toLocaleDateString(language.replaceAll("_","-")))
.removeClass("hidden"); .removeClass("hidden");
} }
}).trigger("change"); }).trigger("change");