Skip to content

Instantly share code, notes, and snippets.

<template>
<require from='input-checkbox'></require>
<h1>Testing custom checkboxes</h1>
<input-checkbox label="First checkbox" my-id="first" checked.bind="first"></input-checkbox>
<input-checkbox label="Second checkbox" my-id="second" checked.bind="second"></input-checkbox>
<div>
<p>Debug</p>
<p>First checkbox: ${first}</p>
<template>
<require from="./url"></require>
<url repeat.for="url of urls" url.bind="url"></url>
</template>
@thinkOfaNumber
thinkOfaNumber / app showing broken ensureObject
Last active January 30, 2018 03:07 — forked from jdanyow/app.html
Aurelia Validation Demo
.
.
@thinkOfaNumber
thinkOfaNumber / _fallback route bug
Last active October 4, 2017 00:27 — forked from jdanyow/app.html
Aurelia Gist
.
@thinkOfaNumber
thinkOfaNumber / app.html
Last active May 9, 2018 20:14 — forked from jdanyow/app.html
Aurelia Gist
<template>
<h1>${message}</h1>
</template>
@thinkOfaNumber
thinkOfaNumber / app demo with router
Last active November 20, 2017 11:24
Aurelia router-view
.
@thinkOfaNumber
thinkOfaNumber / app demo with layouts
Last active August 9, 2017 20:02 — forked from jdanyow/app.html
Aurelia Layouts
.
@thinkOfaNumber
thinkOfaNumber / app.html
Created February 10, 2017 04:39
Aurelia checkbox debounce
<template>
<h1>Checkbox bind debounce</h1>
<form>
<label for="text">text input with debounce:1000 </label>
<input type="text" value.bind="textVal & debounce:1000"/>
<div repeat.for="v of values">
<br/>
<label>
<input type="checkbox" value.bind="v" checked.bind="checkedVal & debounce:1000"> Checkbox value "${v}"
</label>