(el)
| 273 | // decide if they want to set the overflow style in CSS using the custom |
| 274 | // class names |
| 275 | var applyOverflow = function applyOverflow(el) { |
| 276 | return el.style['overflow-x'] = set ? 'hidden' : ''; |
| 277 | }; |
| 278 | if (!props.htmlClassName) { |
| 279 | applyOverflow(document.querySelector('html')); |
| 280 | } |
no outgoing calls
no test coverage detected