Skip to content

Instantly share code, notes, and snippets.

View specimen151's full-sized avatar

Jens Petter Abrahamsen specimen151

View GitHub Profile
@specimen151
specimen151 / app.html
Last active May 12, 2017 13:51 — forked from jdanyow/app.html
Aurelia Gist
<template>
<require from="./comma-list"></require>
Topics:
<input type="text" value.bind="contact.topics|commaList"></input>
<br />Use the button, or append textually above
<p>
Repeat.for contact's topics:
<ul>
<li repeat.for="topic of contact.topics">${topic}</li>
</ul>