mywot / firefox-xul

WOT's current XUL-based Firefox extension
http://www.mywot.com/wiki/Firefox
GNU General Public License v3.0
2 stars 8 forks source link

Warning can't be removed on bodyclick.net #31

Closed sorgoz closed 11 years ago

sorgoz commented 11 years ago

Buttons on the warning screen don't work on the website hxxp://bodyclick.net/

No errors in console.

sorgoz commented 11 years ago

The cause of the problem is in this script: http://bodyclick.net/static/js/selects.js

in this piece:

jQuery(document).click(event, function(e){
        if (jQuery(e.target).closest(".optionsDivInvisible").length) return;
        jQuery('.nonstandartSelect').removeClass('activeSelect');
        jQuery('.nonstandartSelect').find('.optionsDivInvisible:visible').slideUp(200);
        e.stopPropagation();
    });

This piece of code stops events' propagation so nothing can get them.

sorgoz commented 11 years ago

won't fix at this time. Proper solution is to use iframe for warning, but this task is not the easiest one.