diff options
| author | Misko Hevery | 2011-10-20 11:06:06 -0700 | 
|---|---|---|
| committer | Igor Minar | 2011-10-20 11:30:40 -0700 | 
| commit | 7fc18b263dc74f52bb677e446f23e35d64948841 (patch) | |
| tree | 7e0bafb9966c17e5306387ca9fc1028cb7b1111b /src/jqLite.js | |
| parent | fabc9f77a3fae10c2b8d9a9ad1541e827cc0390d (diff) | |
| download | angular.js-7fc18b263dc74f52bb677e446f23e35d64948841.tar.bz2 | |
fix(radio): allows data-binding on value property. Closes#316
Diffstat (limited to 'src/jqLite.js')
| -rw-r--r-- | src/jqLite.js | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/src/jqLite.js b/src/jqLite.js index 816e1ba8..270252bf 100644 --- a/src/jqLite.js +++ b/src/jqLite.js @@ -133,8 +133,8 @@ function JQLitePatchJQueryRemove(name, dispatchThis) {          } else {            fireEvent = !fireEvent;          } -        for(childIndex = 0, childLength = (children = element.children()).length;  -            childIndex < childLength;  +        for(childIndex = 0, childLength = (children = element.children()).length; +            childIndex < childLength;              childIndex++) {            list.push(jQuery(children[childIndex]));          } | 
