diff options
author | Jason Moon <jmoon@socialcast.com> | 2012-05-18 16:30:28 -0400 |
---|---|---|
committer | Dave Methvin <dave.methvin@gmail.com> | 2012-05-18 16:34:30 -0400 |
commit | e93f2a89e277d3fffbc15b4ef82ebc3ac6a840f5 (patch) | |
tree | 4e723f589cb175b44adc07d316e6c7dd21a7f682 /src/manipulation.js | |
parent | 6bf3f20d4e0f69ab14702152880a0574623490e2 (diff) | |
download | jquery-e93f2a89e277d3fffbc15b4ef82ebc3ac6a840f5.tar.gz jquery-e93f2a89e277d3fffbc15b4ef82ebc3ac6a840f5.zip |
Fix #11649. Preserve oldIE submit flag when cloning, closes gh-772.
Diffstat (limited to 'src/manipulation.js')
-rw-r--r-- | src/manipulation.js | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/manipulation.js b/src/manipulation.js index 8b338a5b4..ee5a84c51 100644 --- a/src/manipulation.js +++ b/src/manipulation.js @@ -467,7 +467,6 @@ function cloneFixAttributes( src, dest ) { // Clear flags for bubbling special change/submit events, they must // be reattached when the newly cloned events are first activated - dest.removeAttribute( "_submit_attached" ); dest.removeAttribute( "_change_attached" ); } |