Skip to content

Commit

Permalink
Added source code link and minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Lewis Nakao committed Jul 20, 2020
1 parent 91ffd7c commit 6670d6a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ <h4>Features</h4>
<li>Free</li>
<li>Print-friendly</li>
<li>Answers can be filled and then printed too.</li>
<li>Open source (<a href="https://github.com/lewdev/hw-gen">See source code</a>)</li>
</ul>
<label class="d-block">
<div class="d-inline-block">
Expand All @@ -25,7 +26,7 @@ <h4>Features</h4>
</label>
<table class="table"><tbody id="output"></tbody></table>
<div class="text-center text-muted">
Author: <a href="http://lewdev.github.io">Lewis Nakao</a>
Author: <a href="https://lewdev.github.io">Lewis Nakao</a>
</div>
<script src="js/hw-gen.js"></script>
<script src="js/hw-sets.js"></script>
Expand Down
1 change: 0 additions & 1 deletion src/js/hw-gen.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ const randRangeByDigits = (digits, noOnes = false) => {
if (noOnes && digits === 1) return randNoOnes();
const start = Math.pow(10, digits - 1);
const end = Math.pow(10, digits) - 1;
console.log({start, end})
return randRange(start, end);
};
const solution = (x, y, mathSymbol) => {
Expand Down
2 changes: 1 addition & 1 deletion src/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ body {
}
body.main {
font-size: 1rem;
margin: .5rem;
margin-bottom: 5rem;
}
#answerKeyCbx { width: .7rem; height: .7rem; }
.my-table > tbody > tr > td { border-top: 0; }
Expand Down

0 comments on commit 6670d6a

Please sign in to comment.