mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 10:45:47 +00:00
9 lines
205 B
JavaScript
9 lines
205 B
JavaScript
/* global DOM */
|
|
|
|
import 'domtokenlist-shim';
|
|
import scrollIntoViewIfNeeded from 'scroll-into-view-if-needed';
|
|
|
|
DOM.scrollIntoViewIfNeeded = (el) => scrollIntoViewIfNeeded(el, {
|
|
block: 'nearest',
|
|
});
|
|
|