diff options
Diffstat (limited to 'src/widgets.js')
| -rw-r--r-- | src/widgets.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/widgets.js b/src/widgets.js index d58e7789..fe808740 100644 --- a/src/widgets.js +++ b/src/widgets.js @@ -927,7 +927,7 @@ angularWidget('@ng:repeat', function(expression, element){ } for (key in collection) { - if (!is_array || collection.hasOwnProperty(key)) { + if (collection.hasOwnProperty(key)) { if (index < childCount) { // reuse existing child childScope = children[index]; |
