diff options
author | timmywil <tim.willison@thisismedium.com> | 2011-03-25 10:40:46 -0400 |
---|---|---|
committer | timmywil <tim.willison@thisismedium.com> | 2011-04-03 19:13:40 -0400 |
commit | 3892df207d7a4a3babf5017a309263cceff48b65 (patch) | |
tree | 17ad544b24722892403f72895f0b9e8b9e91a231 /src/attributes.js | |
parent | 47c80c2050fbc15b84cb69edce309777e71b6387 (diff) | |
download | jquery-3892df207d7a4a3babf5017a309263cceff48b65.tar.gz jquery-3892df207d7a4a3babf5017a309263cceff48b65.zip |
Add test for bug #3116
Diffstat (limited to 'src/attributes.js')
-rw-r--r-- | src/attributes.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/attributes.js b/src/attributes.js index 3c6dee8b4..dd4844020 100644 --- a/src/attributes.js +++ b/src/attributes.js @@ -330,7 +330,7 @@ jQuery.extend({ // Check form objects in IE (multiple bugs related) if ( isFormObjects ) { - // Returns undefined for empty string, which is the blank nodeValue in IE + // Return undefined for empty string, which is the blank nodeValue in IE ret = elem.getAttributeNode( name ).nodeValue || undefined; } else { ret = elem.getAttribute( name ); |