From 4a6850a77e8f415750e7124e2bdb10de2ff7ca6f Mon Sep 17 00:00:00 2001 From: Nedyalko Nikolov Date: Fri, 8 May 2015 15:16:51 +0300 Subject: [PATCH] Added missing semicolon. --- ui/core/bindable.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/core/bindable.ts b/ui/core/bindable.ts index cc924fe3a..f5fc7465d 100644 --- a/ui/core/bindable.ts +++ b/ui/core/bindable.ts @@ -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 && ((this))._isInheritedChange() === true) { - return + return; } } var binding = this._bindings[property.name];