Sha256: 1d31c708fb6a7f46b0d5e0d8b9a1fa01a45cf12baa62318ad132bbdf0557ee3a
Contents?: true
Size: 557 Bytes
Versions: 24
Compression:
Stored size: 557 Bytes
Contents
//>>excludeStart("exclude", pragmas.exclude); define([ "shoestring", "dom/append" ], function(){ //>>excludeEnd("exclude"); /** * Insert the current set as the last child of the elements matching the selector. * * @param {string} selector The selector after which to append the current set. * @return shoestring * @this shoestring */ shoestring.fn.appendTo = function( selector ){ return this.each(function(){ shoestring( selector ).append( this ); }); }; //>>excludeStart("exclude", pragmas.exclude); }); //>>excludeEnd("exclude");
Version data entries
24 entries across 24 versions & 1 rubygems