()
| 19 | } |
| 20 | |
| 21 | componentDidMount (){ |
| 22 | let el = this.element; |
| 23 | |
| 24 | if(this.props.autoHeight){ |
| 25 | this.lineHeight = getLineHeight(el); |
| 26 | this.paddingHeight = parseInt(computedStyle(el, 'paddingTop')) + parseInt(computedStyle(el, 'paddingBottom')); |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | componentWillReceiveProps(nextProps) { |
| 31 | let value = nextProps.value; |
nothing calls this directly
no test coverage detected