Skip to content

Commit

Permalink
final
Browse files Browse the repository at this point in the history
  • Loading branch information
djroxx2000 committed Mar 4, 2021
1 parent 3db674b commit 58aeb4e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file removed example.png
Binary file not shown.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ function checkDate() {
let states = [];

// Replace lower limit with 3, upper limit with selectState.childNodes.length when want all states
for (let i = 19; i < 25; i += 2) {
for (let i = 3; i < selectState.childNodes.length; i += 2) {
states.push({ state: selectState.childNodes[i].value, index: i });
}
return states;
Expand Down

0 comments on commit 58aeb4e

Please sign in to comment.