I hereby claim:
- I am pwkad on github.
- I am pwkad (https://keybase.io/pwkad) on keybase.
- I have a public key ASA7Y1b4i1-4s2qDdsAHO3-7sWq45KFz4iYZbVpstVP2bwo
To claim this, I am signing this object:
| <template> | |
| <require from="./autocomplete"></require> | |
| <form> | |
| <label class="form-component"> | |
| Country:<br/> | |
| <autocomplete service.bind="suggestionService.country" | |
| value.bind="model.country" | |
| placeholder="Enter country..." | |
| change.delegate="model.city = null"> | |
| </autocomplete> |
I hereby claim:
To claim this, I am signing this object:
| <template> | |
| <style>.open { color: yellow }</style> | |
| <p class="${chatOpen ? 'open' : '' }">${chatOpen}</p> | |
| <button click.delegate="toggleOpen()">Toggle</button> | |
| </template> |
| <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Node URI Example</title> | |
| <link rel="stylesheet" href="styles.css"> | |
| </head> | |
| <body> | |
| <h1>QR Code Example</h1> | |
| <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Node URI Example</title> | |
| <link rel="stylesheet" href="styles.css"> | |
| </head> | |
| <body> | |
| <h1>QR Code Example</h1> | |
| <template> | |
| <table> | |
| <thead> | |
| <tr> | |
| <th>Date</th> | |
| <th>Price</th> | |
| <th>Amount</th> | |
| <th>Total</th> | |
| <th>Profit</th> | |
| </tr> |
| <template> | |
| <table> | |
| <thead> | |
| <tr> | |
| <th>Date</th> | |
| <th>Price</th> | |
| <th>Amount</th> | |
| <th>Total</th> | |
| <th>Profit</th> | |
| </tr> |
| <template> | |
| <require from="./sort"></require> | |
| <require from="./customele"></require> | |
| <table> | |
| <tr | |
| as-element="customele" | |
| repeat.for="entry of entries | sort: { propertyName: 'on', direction: 'descending' }" | |
| entry.bind="entry"> | |
| </tr> | |
| </table> |
| <template> | |
| <require from="./two-decimal-value-converter"></require> | |
| <h1>${message}</h1> | |
| <input value.bind="testing | twoDecimal "/> | |
| </template> |
| <template> | |
| <h1>${message}</h1> | |
| </template> |