From 1b054f9b3be900d2e982768c9caf57373abc0c5e Mon Sep 17 00:00:00 2001 From: Steve Orvell Date: Mon, 29 Oct 2012 15:07:41 -0700 Subject: [PATCH] g-component: fix typo which affected settings an attribute to a default value in prototype. --- src/g-component.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/g-component.html b/src/g-component.html index 76e5f67423..169b103097 100644 --- a/src/g-component.html +++ b/src/g-component.html @@ -155,7 +155,7 @@ var bindProperty = function(inName, inValue) { if (inName in this) { // set default value in a property already bound via attrs - setPropertySilently.call(this, inName, value); + setPropertySilently.call(this, inName, inValue); } else { //console.log('binding', inName, this) var value = inValue;