* Function: ng_SetStyleHeight * Sets element height defined by style property. * * Syntax: * void *ng_SetStyleHeight* (object elm, int v) * * Parameters: * elm - object element * v - height in pixels * * Returns: * -
(o,v)
| 1820 | * - |
| 1821 | */ |
| 1822 | function ng_SetStyleHeight(o,v) |
| 1823 | { |
| 1824 | if(typeof o.style.pixelHeight !== 'undefined') o.style.pixelHeight=v; |
| 1825 | else o.style.height=v+'px'; |
| 1826 | } |
| 1827 | |
| 1828 | /** |
| 1829 | * Function: ng_OuterWidth |
no outgoing calls
no test coverage detected