cloudcmd/client/modules/polyfill.js
2023-07-09 12:43:24 +03:00

10 lines
234 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',
});