Skip to content

Commit

Permalink
Use sane defaults.
Browse files Browse the repository at this point in the history
  • Loading branch information
hopeseekr committed Dec 12, 2021
1 parent 02ae306 commit 709f8ba
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash


rm -r ~/.androidjs/; time androidjs build --release
jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore /home/tsmith/phpexperts.keystore "dist/Random Timer.apk" phpexperts
zipalign -v 4 "dist/Random Timer.apk" RandomTimer.apk
4 changes: 2 additions & 2 deletions views/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ <h1>Random Timer</h1>
<div class="row align-items-start">
<div class="col-md-6">
<span class="input-group-text">Minimum Minutes</span>
<input type="number" class="form-control" aria-label="Minimum" id="minMin" onfocus="this.select();" onmouseup="return false;" onchange="stopTimer()" value="0.04">
<input type="number" class="form-control" aria-label="Minimum" id="minMin" onfocus="this.select();" onmouseup="return false;" onchange="stopTimer()" value="0.50">
</div>
<div class="col-md-6">
<span class="input-group-text" id="basic-addon1">Maximum Minutes</span>
<input type="number" class="form-control" aria-label="Maximum" id="maxMin" onfocus="this.select();" onmouseup="return false;" onchange="stopTimer()" value="0.05">
<input type="number" class="form-control" aria-label="Maximum" id="maxMin" onfocus="this.select();" onmouseup="return false;" onchange="stopTimer()" value="5">
</div>
</div>
<h3><label><input type="checkbox" id="showCountdown" checked="checked" onclick="toggleCountdownBox(this.checked)"/> Show countdown?</label></h3>
Expand Down

0 comments on commit 709f8ba

Please sign in to comment.