Skip to content

Instantly share code, notes, and snippets.

View petmat's full-sized avatar

Matti Petrelius petmat

View GitHub Profile
@petmat
petmat / app.html
Last active December 28, 2016 01:36
Aurelia checkbox inside button
<template>
<h1>${heading}</h1>
<button type="button" click.delegate="toggleIsChecked()">
<input type="checkbox" checked.bind="isChecked"> ${isChecked}
</button>
</template>