aboutsummaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorTimmy Willison <timmywillisn@gmail.com>2015-05-06 10:47:07 -0700
committerTimmy Willison <timmywillisn@gmail.com>2015-05-12 10:26:21 -0400
commitc252c5fac2a25869524c2eba2e93d4230e6af25c (patch)
tree2f25035db636747b535b7ba9a21778f30eed63a8 /src/core
parent20aaed367f993f3c2aa204183d82d0d73efa114f (diff)
downloadjquery-c252c5fac2a25869524c2eba2e93d4230e6af25c.tar.gz
jquery-c252c5fac2a25869524c2eba2e93d4230e6af25c.zip
Core: remove custom ready event
Fixes gh-2264 Close gh-2265
Diffstat (limited to 'src/core')
-rw-r--r--src/core/ready.js7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/core/ready.js b/src/core/ready.js
index c9ffdd749..bea0496da 100644
--- a/src/core/ready.js
+++ b/src/core/ready.js
@@ -1,7 +1,6 @@
define([
"../core",
"../var/document",
- "../core/init",
"../deferred"
], function( jQuery, document ) {
@@ -50,12 +49,6 @@ jQuery.extend({
// If there are functions bound, to execute
readyList.resolveWith( document, [ jQuery ] );
-
- // Trigger any bound ready events
- if ( jQuery.fn.triggerHandler ) {
- jQuery( document ).triggerHandler( "ready" );
- jQuery( document ).off( "ready" );
- }
}
});