Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions media/system/js/fields/calendar.js
Original file line number Diff line number Diff line change
Expand Up @@ -858,10 +858,10 @@

if (year < this.params.minYear) { // Check min,max year
year = this.params.minYear;
date.getOtherFullYear(this.params.dateType, year);
date.setOtherFullYear(this.params.dateType, year);
} else if (year > this.params.maxYear) {
Comment thread
pinta83 marked this conversation as resolved.
year = this.params.maxYear;
date.getOtherFullYear(this.params.dateType, year);
date.setOtherFullYear(this.params.dateType, year);;

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You have a double semi-colon at the end of this

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed

}

this.params.firstDayOfWeek = firstDayOfWeek;
Expand Down
Loading