* Function: ng_SetStyleWidth * Sets element width defined by style property. * * Syntax: * void *ng_SetStyleWidth* (object elm, int v) * * Parameters: * elm - object element * v - width in pixels * * Returns: * -
(o,v)
| 1800 | * - |
| 1801 | */ |
| 1802 | function ng_SetStyleWidth(o,v) |
| 1803 | { |
| 1804 | if(typeof o.style.pixelWidth !== 'undefined') o.style.pixelWidth=v; |
| 1805 | else o.style.width=v+'px'; |
| 1806 | } |
| 1807 | |
| 1808 | /** |
| 1809 | * Function: ng_SetStyleHeight |
no outgoing calls
no test coverage detected