aboutsummaryrefslogtreecommitdiffstats
path: root/src/ng/directive/input.js
diff options
context:
space:
mode:
authorMisko Hevery2012-06-01 14:58:51 -0700
committerMisko Hevery2012-08-27 14:59:18 -0700
commitfa62ea810f6c701e898dd07c6c9228f13d5b5e02 (patch)
tree82ac495d3b4942bd0f3ffb39b48f03f6b78d4acd /src/ng/directive/input.js
parentbf8ed8a5324183577f0465038272fc9673bb3e72 (diff)
downloadangular.js-fa62ea810f6c701e898dd07c6c9228f13d5b5e02.tar.bz2
fix(ng-list): remove data bound flicker
Diffstat (limited to 'src/ng/directive/input.js')
-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(', ');
}