https://bugzilla.wikimedia.org/show_bug.cgi?id=47435

--- Comment #12 from [email protected] ---
Ok, as FIXED seems to be code for WONTFIX, I wrote a small javascript that one
can put in one's common.js if one so pleases. It may need adjustments for
different languages. I'll be the first to admit that it's an ugly hack, but
still no match for the nag box IMO. Improvements are welcome.

$(document).ready(function() {
    setInterval(function() {
        $('div.tipsy').each(function() {
            var txt = $(this).find('div.tipsy-inner span p').html();
            if (txt.substring(0,12)=='By clicking ') {
                $(this).remove();
            }
        });
    },250);
    return false;
});

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
Wikibugs-l mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to