0
|
1 //>>excludeStart("exclude", pragmas.exclude);
|
|
2 define([ "shoestring", "dom/prepend" ], function(){
|
|
3 //>>excludeEnd("exclude");
|
|
4
|
|
5 /**
|
|
6 * Add each element of the current set before the children of the selected elements.
|
|
7 *
|
|
8 * @param {string} selector The selector for the elements to add the current set to..
|
|
9 * @return shoestring
|
|
10 * @this shoestring
|
|
11 */
|
|
12 shoestring.fn.prependTo = function( selector ){
|
|
13 return this.each(function(){
|
|
14 shoestring( selector ).prepend( this );
|
|
15 });
|
|
16 };
|
|
17
|
|
18 //>>excludeStart("exclude", pragmas.exclude);
|
|
19 });
|
|
20 //>>excludeEnd("exclude");
|