mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-29 20:40:29 +00:00
fix(ng-list): remove data bound flicker
This commit is contained in:
parent
78c5743494
commit
2af0348cea
1 changed files with 1 additions and 1 deletions
|
|
@ -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(', ');
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue