-
-
Save m-andrew-albright/da6820af6d16927b42719c4b3f6edeca to your computer and use it in GitHub Desktop.
Binding Signaler Bug
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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!'; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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