ehmorris / High-Resolution-Downloader-For-Instagram

A Chrome extension for easily downloading high resolution copies of any Instagram photo, video, or story.
GNU General Public License v3.0
89 stars 8 forks source link

Fix input focus stealing #57

Closed ehmorris closed 4 years ago

ehmorris commented 4 years ago

Bug case: clicking the story DM input box to send a message triggered the extension. Displaying the extension UI also removed focus from the input, which made it impossible to message someone from a story. It's unclear what exactly was stealing focus, but the fix was easy enough to make without investigating further.

This PR updates the termination loop method in mediaAtPoint with a check for an input or textarea. If the user has clicked where there is an input, the extension will not trigger.

Also, ran prettier.

Fixes #56