mirror of
https://github.com/murdos/musicbrainz-userscripts
synced 2024-11-10 05:04:13 +00:00
Fix lint and formatting errors
This commit is contained in:
parent
7cb81736b3
commit
2b49a0faa6
1 changed files with 4 additions and 2 deletions
|
@ -15,12 +15,14 @@
|
|||
this.$ = this.jQuery = jQuery.noConflict(true);
|
||||
|
||||
$(document).ready(function () {
|
||||
// Follow the instructions found at https://www.last.fm/api/authentication
|
||||
// Follow the instructions found at https://www.last.fm/api/authentication
|
||||
// then paste your API Key between the single quotes in the variable below.
|
||||
LASTFM_APIKEY = '';
|
||||
|
||||
// Highlight table rows
|
||||
$('head').append('<style>table.tbl > tbody > tr:hover { background-color: #ffeea8 } table.tbl > tbody > tr:hover > td { background-color: rgba(0, 0, 0, 0) }</style>');
|
||||
$('head').append(
|
||||
'<style>table.tbl > tbody > tr:hover { background-color: #ffeea8 } table.tbl > tbody > tr:hover > td { background-color: rgba(0, 0, 0, 0) }</style>'
|
||||
);
|
||||
|
||||
let re;
|
||||
|
||||
|
|
Loading…
Reference in a new issue