We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c62e36 commit b7edfecCopy full SHA for b7edfec
ui/widgets/datepicker.js
@@ -1894,7 +1894,7 @@ $.extend( Datepicker.prototype, {
1894
for ( ; year <= endYear; year++ ) {
1895
inst.yearshtml += "<option value='" + year + "'" +
1896
( year === drawYear ? " selected='selected'" : "" ) +
1897
- ">" + ( ( year == firstYear || year == endYear ) ? "..." : year ) + "</option>";
+ ">" + ( ( year === firstYear || year === endYear ) ? "..." : year ) + "</option>";
1898
}
1899
inst.yearshtml += "</select>";
1900
0 commit comments