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
{ | |
"compilerOptions": { | |
"target": "ES6", | |
"lib": ["es2017"], | |
"module": "commonjs", | |
"allowSyntheticDefaultImports": true, | |
"baseUrl": "./src/", | |
"checkJs": true, | |
"jsx": "react", | |
"paths": { |
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
/** | |
* Whole House Fan II | |
* | |
* Copyright 2017 John Culviner | |
* | |
* MIT LICENSE | |
*/ | |
definition( | |
name: "Whole House Fan II", | |
namespace: "culviner", |
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
<tr> | |
<td> | |
<input data-val="true" data-val-required="The IsCompleted field is required." id="Items_###__IsCompleted" name="Items[###].IsCompleted" type="checkbox" value="false" > | |
<input name="Items[###].IsCompleted" type="hidden" value="false"> | |
<span class="field-validation-valid" data-valmsg-for="Items[###].IsCompleted" data-valmsg-replace="true"></span> | |
</td> | |
<td> | |
<input data-val="true" data-val-required="The Task field is required." id="Items_###__Task" name="Items[###].Task" type="text" > | |
<span class="field-validation-valid" data-valmsg-for="Items[###].Task" data-valmsg-replace="true"></span> | |
</td> |