Sha256: f6df91cad8e84c1e34dcda67f598a643208295ac41b00c5b5856536085701682
Contents?: true
Size: 636 Bytes
Versions: 159
Compression:
Stored size: 636 Bytes
Contents
define( [ "./core" ], function( jQuery ) { jQuery.fn.extend( { bind: function( types, data, fn ) { return this.on( types, null, data, fn ); }, unbind: function( types, fn ) { return this.off( types, null, fn ); }, delegate: function( selector, types, data, fn ) { return this.on( types, selector, data, fn ); }, undelegate: function( selector, types, fn ) { // ( namespace ) or ( selector, types [, fn] ) return arguments.length === 1 ? this.off( selector, "**" ) : this.off( types, selector || "**", fn ); }, size: function() { return this.length; } } ); jQuery.fn.andSelf = jQuery.fn.addBack; } );
Version data entries
159 entries across 102 versions & 10 rubygems