(a)
| 133 | } |
| 134 | |
| 135 | function parseAlignmentY(a) { |
| 136 | if (a === null || a === undefined) return 0; |
| 137 | |
| 138 | return a.indexOf('top') > -1 ? -1 : a.indexOf('bottom') > -1 ? 1 : 0; |
| 139 | } |
| 140 | |
| 141 | function calculateTextOffset(tp) { |
| 142 | // Read out text properties |
no outgoing calls
no test coverage detected
searching dependent graphs…