cloudcmd/client/modules/polyfill.js
2019-02-01 19:05:41 +02:00

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