-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
More robust way to hide native checkbox
- Loading branch information
Showing
2 changed files
with
76 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,12 @@ | ||
<ol class=to-do-checklist data-on-click=app.saveChecklist> | ||
<li id=phone> <label><span>Set your mobile device to metric</span> <input type=checkbox></label></li> | ||
<li id=car> <label><span>Set the temperature display in your car to Celsius (°C)</span> <input type=checkbox></label></li> | ||
<li id=home> <label><span>Set your home thermostat to Celsius (°C)</span> <input type=checkbox></label></li> | ||
<li id=refrigerator> <label><span>Set your refrigerator to Celsius (°C)</span> <input type=checkbox></label></li> | ||
<li id=tape-measure> <label><span>Buy a <a href={{webRoot}}/products>metric only tape measure</a></span> <input type=checkbox></label></li> | ||
<li id=kitchen-scale><label><span>Buy a <a href={{webRoot}}/products>kitchen scale</a> that displays grams</span> <input type=checkbox></label></li> | ||
<li id=bathroom> <label><span>Set your bathroom scale to kilograms (kg)</span> <input type=checkbox></label></li> | ||
<li id=phone> <p>Set your mobile device to metric</p> <label><input type=checkbox><b></b></label></li> | ||
<li id=car> <p>Set the display in your car to Celsius (°C)</p> <label><input type=checkbox><b></b></label></li> | ||
<li id=home> <p>Set your home thermostat to Celsius (°C)</p> <label><input type=checkbox><b></b></label></li> | ||
<li id=refrigerator> <p>Set your refrigerator to Celsius (°C)</p> <label><input type=checkbox><b></b></label></li> | ||
<li id=tape-measure> <p>Buy a <a href={{webRoot}}/products>metric only tape measure</a></p> <label><input type=checkbox><b></b></label></li> | ||
<li id=kitchen-scale><p>Buy a <a href={{webRoot}}/products>kitchen scale</a> that displays grams (g)</p> <label><input type=checkbox><b></b></label></li> | ||
<li id=bathroom> <p>Set your bathroom scale to kilograms (kg)</p> <label><input type=checkbox><b></b></label></li> | ||
<li id=helpful> <p>Click "Helpful" for a review of a good metric product</p> <label><input type=checkbox><b></b></label></li> | ||
<li id=review> <p>Leave a positive review for a good metric product</p> <label><input type=checkbox><b></b></label></li> | ||
<li id=recipe> <p>Follow a <a href=https://pilafian.org/dem/pilaf>metric recipe</a> to prepare a dish</p><label><input type=checkbox><b></b></label></li> | ||
</ol> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters