(element)
| 162 | _Height = "Height", |
| 163 | _px = "px", |
| 164 | _getComputedStyle = function _getComputedStyle(element) { |
| 165 | return _win.getComputedStyle(element.nodeType === Node.DOCUMENT_NODE ? element.scrollingElement : element); |
| 166 | }, |
| 167 | _makePositionable = function _makePositionable(element) { |
| 168 | // if the element already has position: absolute or fixed, leave that, otherwise make it position: relative |
| 169 | var position = _getComputedStyle(element).position; |
no outgoing calls
no test coverage detected
searching dependent graphs…