TelegramPWA/src/util/resetScroll.ts
Alexander Zinchuk 3afcde3217 Initial commit
2021-04-09 14:11:51 +03:00

16 lines
304 B
TypeScript

import { IS_IOS } from './environment';
export default (container: HTMLDivElement, scrollTop?: number) => {
if (IS_IOS) {
container.style.overflow = 'hidden';
}
if (scrollTop !== undefined) {
container.scrollTop = scrollTop;
}
if (IS_IOS) {
container.style.overflow = '';
}
};