diff options
author | Manoj Kumar <nithmanoj@gmail.com> | 2016-08-31 04:01:31 +0000 |
---|---|---|
committer | Timmy Willison <4timmywil@gmail.com> | 2017-02-13 10:55:39 -0500 |
commit | bd984f0ee2cf40107a669d80d92566b8625b1e6b (patch) | |
tree | 4b521d06ca43061369bcf9652e3e7fe8f28784f0 /src/core/ready.js | |
parent | 0588d0ce35458eccaa6a19f6350988d34496a31d (diff) | |
download | jquery-bd984f0ee2cf40107a669d80d92566b8625b1e6b.tar.gz jquery-bd984f0ee2cf40107a669d80d92566b8625b1e6b.zip |
Core: Move holdReady to deprecated
Fixes gh-3288
Close gh-3306
Diffstat (limited to 'src/core/ready.js')
-rw-r--r-- | src/core/ready.js | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/core/ready.js b/src/core/ready.js index 53b1b2da7..794feeec0 100644 --- a/src/core/ready.js +++ b/src/core/ready.js @@ -34,15 +34,6 @@ jQuery.extend( { // the ready event fires. See #6781 readyWait: 1, - // Hold (or release) the ready event - holdReady: function( hold ) { - if ( hold ) { - jQuery.readyWait++; - } else { - jQuery.ready( true ); - } - }, - // Handle when the DOM is ready ready: function( wait ) { |