Skip to content

Commit eed78cc

Browse files
committed
Fix #13078. Remove .live() and .die(). Great rejoicing.
1 parent 963c47f commit eed78cc

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

src/event.js

-9
Original file line numberDiff line numberDiff line change
@@ -940,15 +940,6 @@ jQuery.fn.extend({
940940
return this.off( types, null, fn );
941941
},
942942

943-
live: function( types, data, fn ) {
944-
jQuery( this.context ).on( types, this.selector, data, fn );
945-
return this;
946-
},
947-
die: function( types, fn ) {
948-
jQuery( this.context ).off( types, this.selector || "**", fn );
949-
return this;
950-
},
951-
952943
delegate: function( selector, types, data, fn ) {
953944
return this.on( types, selector, data, fn );
954945
},

0 commit comments

Comments
 (0)