0
|
1 //>>excludeStart("exclude", pragmas.exclude);
|
|
2 define([ "shoestring", "dom/dimension" ], function(){
|
|
3 //>>excludeEnd("exclude");
|
|
4
|
|
5 /**
|
|
6 * Gets the height value of the first element or sets the height for the whole set.
|
|
7 *
|
|
8 * @param {float|undefined} value The value to assign.
|
|
9 * @return shoestring
|
|
10 * @this shoestring
|
|
11 */
|
|
12 shoestring.fn.height = function( value ){
|
|
13 return shoestring._dimension( this, "height", value );
|
|
14 };
|
|
15
|
|
16 //>>excludeStart("exclude", pragmas.exclude);
|
|
17 });
|
|
18 //>>excludeEnd("exclude");
|