Merge pull request #490 from FransM/master

Allow 31 as day number
master
Gordon Williams 2020-06-08 15:49:45 +01:00 committed by GitHub
commit 0d1c666e20
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -360,7 +360,7 @@ function showSetTimeMenu() {
'Date': {
value: d.getDate(),
onchange: function (v) {
this.value = ((v+29)%30)+1;
this.value = ((v+30)%31)+1;
d.setDate(this.value);
}
},