fix(ng-list): remove data bound flicker

This commit is contained in:
Misko Hevery 2012-06-01 14:58:51 -07:00
parent 78c5743494
commit 2af0348cea

View file

@ -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(', ');
}