Skip to content

Instantly share code, notes, and snippets.

@diegogarcia28
Created October 26, 2016 19:10
Show Gist options
  • Save diegogarcia28/6d506f8426110531e4416b7924e8b624 to your computer and use it in GitHub Desktop.
Save diegogarcia28/6d506f8426110531e4416b7924e8b624 to your computer and use it in GitHub Desktop.
<template>
${d1}
${d2}
<div repeat.for="d of demand" click.trigger="doSomething()">
<input type="checkbox" checked.bind="d.send">
<h4>${d.name}</h4>
</div>
</template>
export class App {
constructor() {
this.demand = [ { 'name': 'name1', 'send': false }, { 'name': 'name2', 'send': 'false' } ];
this.d1 = this.demand[0].send;
this.d2 = this.demand[1].send;
}
doSomething() {
console.log( 'just did something' );
}
}
<!doctype html>
<html>
<head>
<title>Aurelia</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body aurelia-app>
<h1>Loading...</h1>
<script src="https://jdanyow.github.io/rjs-bundle/node_modules/requirejs/require.js"></script>
<script src="https://jdanyow.github.io/rjs-bundle/config.js"></script>
<script src="https://jdanyow.github.io/rjs-bundle/bundles/aurelia.js"></script>
<script src="https://jdanyow.github.io/rjs-bundle/bundles/babel.js"></script>
<script>
require(['aurelia-bootstrapper']);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment