AdguardTeam / PopupBlocker

Popup blocking userscript
GNU Lesser General Public License v3.0
337 stars 31 forks source link

dailymotion.com - Login window blocked #30

Closed danidoedel closed 7 years ago

danidoedel commented 7 years ago

PopupBlocker blocks log in window If you try to log in with Google+ or Facebook:

image

http://www.dailymotion.com/us (Click on "SIGN IN" at top right)

danidoedel commented 7 years ago

Same on https://zattoo.com/start/signup (maybe related so I didn't open a new issue):

image

theseanl commented 7 years ago

These issues were caused by event delegation used by various frameworks. The first is caused by jQuery, and the second is caused by React.

The userscript currently relies a lot on a user click event's current target which marks to where the event has bubbled, but such event delegation makes it hard to reason about it. In the version 2.1.3, we implemented specific workarounds for jQuery and React.