diff options
author | John Resig <jeresig@gmail.com> | 2011-04-17 14:11:40 -0700 |
---|---|---|
committer | timmywil <tim.willison@thisismedium.com> | 2011-04-17 18:17:31 -0400 |
commit | 15da298f72bf94a95563abc12b8e6fec8c604099 (patch) | |
tree | bd70c0fc5ce8d81e8aca9c9ae08cf071baacd403 /src/support.js | |
parent | 2a71493447b91731cfbcbd3cce18bbdb8949c96a (diff) | |
download | jquery-15da298f72bf94a95563abc12b8e6fec8c604099.tar.gz jquery-15da298f72bf94a95563abc12b8e6fec8c604099.zip |
Remove unnecessary usage of Function.prototype.bind (#7783) but maintain API. Also fix bug with proxy failing when a name is provided. Fixes #8893.
Diffstat (limited to 'src/support.js')
-rw-r--r-- | src/support.js | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/support.js b/src/support.js index 1bd35cab2..867e18367 100644 --- a/src/support.js +++ b/src/support.js @@ -77,10 +77,6 @@ jQuery.support = (function() { // Test setAttribute on camelCase class. If it works, we need attrFixes when doing get/setAttribute (ie6/7) getSetAttribute: div.className !== "t", - // Test for presence of native Function#bind. - // Not in: >= Chrome 6, >= FireFox 3, Safari 5?, IE 9?, Opera 11? - nativeBind: jQuery.isFunction( Function.prototype.bind ), - // Will be defined later submitBubbles: true, changeBubbles: true, |