(v)
| 1607 | } |
| 1608 | |
| 1609 | function ng_GetStylePx(v) |
| 1610 | { |
| 1611 | var tv=typeof v; |
| 1612 | if(tv==='number') return v; |
| 1613 | if((v=='')||(tv==='undefined')) return 0; |
| 1614 | v=parseInt(v,10); |
| 1615 | return (isNaN(v) ? 0 : v); |
| 1616 | } |
| 1617 | |
| 1618 | /** |
| 1619 | * Function: ng_GetCurrentStyle |
no outgoing calls
no test coverage detected