aboutsummaryrefslogtreecommitdiffstats
path: root/src/Scope.js
diff options
context:
space:
mode:
authorMisko Hevery2010-01-24 19:33:04 -0800
committerMisko Hevery2010-01-24 19:33:04 -0800
commit0f42fa2930f5827ac9f1eac2ce09ea3bf9533563 (patch)
tree2dc03ca6a158cefa71ab51476fa9e29b984826a9 /src/Scope.js
parenta5c446441fee005975a82885771e8d931e7a4e7a (diff)
downloadangular.js-0f42fa2930f5827ac9f1eac2ce09ea3bf9533563.tar.bz2
fix closure compiler issues
Diffstat (limited to 'src/Scope.js')
-rw-r--r--src/Scope.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Scope.js b/src/Scope.js
index 3b1f3930..9be6bc3f 100644
--- a/src/Scope.js
+++ b/src/Scope.js
@@ -153,7 +153,7 @@ Scope.prototype = {
},
markInvalid: function(widget) {
- this.state.$invalidWidgets.push(widget);
+ this.state['$invalidWidgets'].push(widget);
},
watch: function(declaration) {