Fix #13078. Remove .live() and .die(). Great rejoicing.

This commit is contained in:
Dave Methvin 2012-12-18 13:24:05 -05:00
parent 963c47f9ed
commit eed78cc321

View File

@ -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 );
},