From eed78cc321ed7e2b37fb34e32fbb528b24f61d6e Mon Sep 17 00:00:00 2001 From: Dave Methvin Date: Tue, 18 Dec 2012 13:24:05 -0500 Subject: [PATCH] Fix #13078. Remove .live() and .die(). Great rejoicing. --- src/event.js | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/event.js b/src/event.js index efbc0c287..adaba7673 100644 --- a/src/event.js +++ b/src/event.js @@ -940,15 +940,6 @@ jQuery.fn.extend({ return this.off( types, null, fn ); }, - live: function( types, data, fn ) { - jQuery( this.context ).on( types, this.selector, data, fn ); - return this; - }, - die: function( types, fn ) { - jQuery( this.context ).off( types, this.selector || "**", fn ); - return this; - }, - delegate: function( selector, types, data, fn ) { return this.on( types, selector, data, fn ); }, -- 2.39.5