Skip to content

Instantly share code, notes, and snippets.

@geleto
geleto / app.html
Created May 14, 2017 06:58 — forked from gheoan/app.html
Aurelia Gist
<template>
<p>${message}</p>
</template>
@geleto
geleto / app.html
Last active October 27, 2016 13:24 — forked from martonsagi/app.html
Aurelia: Deleting array elements when changed to empty value - no 2-way binding
<template>
<div repeat.for="msg of messages">
<input type="text" value.bind="msg" input.delegate="onMessageChanged(msg, $index)">
</div>
</template>
@geleto
geleto / app.html
Last active May 1, 2017 08:52 — forked from jdanyow/app.html
Aurelia Gist
<template>
<div repeat.for="i of messages.length">
<input type="text" value.bind="$parent.messages[i]" input.delegate="onMessageChanged()">
</div>
</template>