diff options
author | timmywil <tim.willison@thisismedium.com> | 2011-04-21 21:51:23 -0400 |
---|---|---|
committer | jeresig <jeresig@gmail.com> | 2011-04-21 21:51:23 -0400 |
commit | d274b7b9f7727e8bccd6906d954e4dc790404d23 (patch) | |
tree | fb02a206c0e5206af9a546de8f2c2e744bda3bb3 /src/core.js | |
parent | 3ac9eb7ce37b461a34e303e8b77aa544d313441c (diff) | |
download | jquery-d274b7b9f7727e8bccd6906d954e4dc790404d23.tar.gz jquery-d274b7b9f7727e8bccd6906d954e4dc790404d23.zip |
Landing pull request 332. Appending disconnected radio or checkbox inputs and keeping checked setting Fixes #8060, #8500.
More Details:
- https://github.com/jquery/jquery/pull/332
- http://bugs.jquery.com/ticket/8060
- http://bugs.jquery.com/ticket/8500
Diffstat (limited to 'src/core.js')
-rw-r--r-- | src/core.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core.js b/src/core.js index a82a2fdce..8d812e384 100644 --- a/src/core.js +++ b/src/core.js @@ -731,7 +731,7 @@ jQuery.extend({ } } - // Go thorugh every key on the object, + // Go through every key on the object, } else { for ( key in elems ) { value = callback( elems[ key ], key, arg ); |