diff options
author | jeresig <jeresig@gmail.com> | 2010-02-13 02:26:50 -0500 |
---|---|---|
committer | jeresig <jeresig@gmail.com> | 2010-02-13 02:26:50 -0500 |
commit | a7dc66b8325906066071fe5c44ce55ecf2eb5aed (patch) | |
tree | fe62f3a13d12dc95ce911f3e560046260f3753da /src/manipulation.js | |
parent | abcc1a76ee2a6733177b2cd104bc32cee5443ec4 (diff) | |
download | jquery-a7dc66b8325906066071fe5c44ce55ecf2eb5aed.tar.gz jquery-a7dc66b8325906066071fe5c44ce55ecf2eb5aed.zip |
Rename internal .getText to maintain parity between it and the primary .text(). Fixes #6094.
Diffstat (limited to 'src/manipulation.js')
-rw-r--r-- | src/manipulation.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/manipulation.js b/src/manipulation.js index e673e2fe8..b2a9df919 100644 --- a/src/manipulation.js +++ b/src/manipulation.js @@ -45,7 +45,7 @@ jQuery.fn.extend({ return this.empty().append( (this[0] && this[0].ownerDocument || document).createTextNode( text ) ); } - return jQuery.getText( this ); + return jQuery.text( this ); }, wrapAll: function( html ) { |