Skip to content

Commit b7edfec

Browse files
Bogatyrev.PBogatyrev.P
authored andcommitted
Fixed code style.
1 parent 3c62e36 commit b7edfec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/widgets/datepicker.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1894,7 +1894,7 @@ $.extend( Datepicker.prototype, {
18941894
for ( ; year <= endYear; year++ ) {
18951895
inst.yearshtml += "<option value='" + year + "'" +
18961896
( year === drawYear ? " selected='selected'" : "" ) +
1897-
">" + ( ( year == firstYear || year == endYear ) ? "..." : year ) + "</option>";
1897+
">" + ( ( year === firstYear || year === endYear ) ? "..." : year ) + "</option>";
18981898
}
18991899
inst.yearshtml += "</select>";
19001900

0 commit comments

Comments
 (0)