Initial prototype of Frame + Page + Navigation.

This commit is contained in:
atanasovg
2014-06-12 17:37:55 +03:00
parent ef7c3ce677
commit 2c4781db01
26 changed files with 520 additions and 80 deletions

View File

@@ -37,6 +37,11 @@ export class Bindable extends observable.Observable {
}
}
public setPropertyCore(data: observable.PropertyChangeData) {
super.setPropertyCore(data);
this.updateTwoWayBinding(data.propertyName, data.value);
}
public getBinding(propertyName: string) {
return this._bindings[propertyName];
}