Skip to content

Instantly share code, notes, and snippets.

@3cp
Last active September 21, 2016 05:40
Show Gist options
  • Save 3cp/db3426bc62a07fc3dfd16e826de763e2 to your computer and use it in GitHub Desktop.
Save 3cp/db3426bc62a07fc3dfd16e826de763e2 to your computer and use it in GitHub Desktop.
aurelia svg if binding
<template>
<button click.delegate="toggleLine()">toggleLine</button><br/>
<p
if.bind="line"
class.bind="line.sx"></p>>
</template>
export class App {
toggleLine() {
if (this.line) {
this.line = null;
} else {
this.line = {
sx: 10, sy: 20,
ex: 90, ey: 90
}
}
}
}
<!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://cdn.rawgit.com/jdanyow/aurelia-bundle/v1.0.3/jspm_packages/system.js"></script>
<script src="https://cdn.rawgit.com/jdanyow/aurelia-bundle/v1.0.3/config.js"></script>
<script>
System.import('aurelia-bootstrapper');
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment