This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const findScrollContainer = (element) => { | |
| if (!element) { | |
| return undefined; | |
| } | |
| let parent = element.parentElement; | |
| while (parent) { | |
| const { overflow } = window.getComputedStyle(parent); | |
| if (overflow.split(' ').every(o => o === 'auto' || o === 'scroll')) { | |
| return parent; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function isAnimatedGif(src, cb) { | |
| var request = new XMLHttpRequest(); | |
| request.open('GET', src, true); | |
| request.responseType = 'arraybuffer'; | |
| request.addEventListener('load', function () { | |
| var arr = new Uint8Array(request.response), | |
| i, len, length = arr.length, frames = 0; | |
| // make sure it's a gif (GIF8) | |
| if (arr[0] !== 0x47 || arr[1] !== 0x49 || |