(p)
| 1599 | } |
| 1600 | |
| 1601 | function ng_GetStylePx2(p) |
| 1602 | { |
| 1603 | p=ngVal(p,''); |
| 1604 | if(p=='') return; |
| 1605 | if((p.length>2)&&(p.substring(p.length-2)=='px')) p=ng_GetStylePx(p.substring(0,p.length-2)); |
| 1606 | return p; |
| 1607 | } |
| 1608 | |
| 1609 | function ng_GetStylePx(v) |
| 1610 | { |
nothing calls this directly
no test coverage detected