Skip to content

Commit

Permalink
add sentence generator
Browse files Browse the repository at this point in the history
  • Loading branch information
bigyihsuan committed Aug 8, 2023
1 parent f01241f commit e5da20f
Show file tree
Hide file tree
Showing 5 changed files with 354 additions and 244 deletions.
6 changes: 6 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,12 @@
"ForInStatement",
"LabeledStatement",
"WithStatement"
],
"max-len": [
"warn",
{
"code": 120
}
]
}
}
6 changes: 5 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
}

code {
background-color: var(--bs-gray-200);
background-color: var(--bs-gray-250);
opacity: 1;
border-radius: 0.25em;
width: auto;
Expand Down Expand Up @@ -57,6 +57,10 @@ <h1>WIP &mdash; Random Word Generator </h1>
<span class="input-group-text">Number of Words</span>
<input type="number" min="1" value="25" id="wordCount" class="form-control">
</div>
<div class="input-group" id="sentenceCountInput">
<span class="input-group-text">Number of Sentences</span>
<input type="number" min="1" value="5" id="sentenceCount" class="form-control">
</div>
<div class="input-group">
<div class="form-check form-check-inline">
<input class="form-check-input" type="checkbox" id="allowDuplicates">
Expand Down
Loading

0 comments on commit e5da20f

Please sign in to comment.