aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMisko Hevery2012-06-01 14:58:51 -0700
committerMisko Hevery2012-08-27 21:20:50 -0700
commit2af0348cea016e7081eab3189ae89f13f0e08213 (patch)
treeb340d64a88883e6e9a1c8c9dc0eb4f38661dede2
parent78c5743494314ca7cb4520ca49e8d82fab069d05 (diff)
downloadangular.js-2af0348cea016e7081eab3189ae89f13f0e08213.tar.bz2
fix(ng-list): remove data bound flicker
-rw-r--r--src/ng/directive/input.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ng/directive/input.js b/src/ng/directive/input.js
index 40b29b23..cd2f0cfc 100644
--- a/src/ng/directive/input.js
+++ b/src/ng/directive/input.js
@@ -1219,7 +1219,7 @@ var ngListDirective = function() {
ctrl.$parsers.push(parse);
ctrl.$formatters.push(function(value) {
- if (isArray(value) && !equals(parse(ctrl.$viewValue), value)) {
+ if (isArray(value)) {
return value.join(', ');
}