Skip to content

Instantly share code, notes, and snippets.

@m-andrew-albright
Forked from jdanyow/app.html
Last active July 22, 2017 00:21
Show Gist options
  • Save m-andrew-albright/da6820af6d16927b42719c4b3f6edeca to your computer and use it in GitHub Desktop.
Save m-andrew-albright/da6820af6d16927b42719c4b3f6edeca to your computer and use it in GitHub Desktop.
Binding Signaler Bug
<template>
<h1>${message}</h1>
<h2>${timeSince} raw</h2>
<h2>${timeSince & oneTime} oneTime</h2>
<h2>${timeSince & throttle:1000} throttled</h2>
<h2>${timeSince & signal:'my-signal'} signaled</h2>
</template>
import { BindingSignaler } from 'aurelia-templating-resources';
export class App {
static inject = [BindingSignaler];
constructor(signaler) {
this.signaler = signaler;
this.timeStamp = new Date().getTime();
setInterval(() => {this.signaler.signal('my-signal')}, 5000);
}
get timeSince() {
const now = new Date().getTime();
return now - this.timeStamp;
}
message = 'Hello World!';
}
<!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