Created
June 3, 2016 17:39
-
-
Save jdanyow/304cddadb7374610117a6dea2074ff5d to your computer and use it in GitHub Desktop.
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> | |
<require from="./dirty-check-binding-behavior"></require> | |
<h1>${message & dirtyCheck}</h1> | |
</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
export class App { | |
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
import {inject} from 'aurelia-dependency-injection'; | |
import {ObserverLocator, DirtyCheckProperty} from 'aurelia-binding'; | |
@inject(ObserverLocator) | |
export class DirtyCheckBindingBehavior { | |
constructor(observerLocator) { | |
this.observerLocator = observerLocator; | |
} | |
bind(binding, source) { | |
const observerLocator = this.observerLocator; | |
binding.standardObserveProperty = binding.observeProperty; | |
binding.observeProperty = function(obj, propertyName) { | |
let temp = observerLocator.getObserver; | |
observerLocator.getObserver = function(obj, propertyName) { | |
return new DirtyCheckProperty(this.dirtyChecker, obj, propertyName); | |
}; | |
binding.standardObserveProperty(obj, propertyName); | |
observerLocator.getObserver = temp; | |
} | |
} | |
unbind(binding, source) { | |
binding.observeProperty = binding.standardObserveProperty; | |
binding.standardObserveProperty = null; | |
} | |
} |
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