Added missing semicolon.

This commit is contained in:
Nedyalko Nikolov
2015-05-08 15:16:51 +03:00
parent 80336d2ea5
commit 4a6850a77e

View File

@@ -81,7 +81,7 @@ export class Bindable extends dependencyObservable.DependencyObservable implemen
super._onPropertyChanged(property, oldValue, newValue);
if (this instanceof viewModule.View) {
if (property.metadata.inheritable && (<viewModule.View>(<any>this))._isInheritedChange() === true) {
return
return;
}
}
var binding = this._bindings[property.name];