Handled text change notifications for iOS label.

This commit is contained in:
atanasovg
2014-06-06 18:46:02 +03:00
parent 9066166515
commit 1fdb2e99d2
2 changed files with 14 additions and 14 deletions

View File

@ -22,6 +22,10 @@ export class Observable {
// true to track the Changing phase, false otherwise
private _trackChanging = false;
constructor(body?: any) {
// TODO: Not implemented
}
public addObserver(eventName: string, callback: (data: ChangeData) => void) {
this.verifyCallback(callback);
var list = this.getEventList(eventName, true);