Skip to content

Instantly share code, notes, and snippets.

@arv
Created September 20, 2012 15:28
Show Gist options
  • Save arv/3756613 to your computer and use it in GitHub Desktop.
Save arv/3756613 to your computer and use it in GitHub Desktop.
notify
var data = 42;
var object = {
get x() {
return data;
},
set x(v) {
notifier.notify({
type: 'updated',
name: 'x',
oldValue: data
});
data = v;
}
};
var notifier = Object.getNotifier(object);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment