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