diff --git a/mb_ui_enhancements.user.js b/mb_ui_enhancements.user.js index 16b15e7..03f0193 100644 --- a/mb_ui_enhancements.user.js +++ b/mb_ui_enhancements.user.js @@ -20,24 +20,7 @@ $(document).ready(function () { LASTFM_APIKEY = ''; // Highlight table rows - $('table.tbl tbody tr').hover( - function () { - $(this) - .children('td') - .each(function () { - let backgroundColor = $(this).css('backgroundColor'); - if (backgroundColor != 'rgb(255, 255, 0)') $(this).css('backgroundColor', '#ffeea8'); - }); - }, - function () { - $(this) - .children('td') - .each(function () { - let backgroundColor = $(this).css('backgroundColor'); - if (backgroundColor != 'rgb(255, 255, 0)') $(this).css('backgroundColor', ''); - }); - } - ); + $('head').append(''); let re;