Skip to content
This repository has been archived by the owner on Jan 10, 2024. It is now read-only.

Commit

Permalink
Fixed eslint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
rospino74 authored and dependabot[bot] committed Nov 23, 2021
1 parent c0c085f commit c55a3a3
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions src/foreground/quizlet/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,13 @@ setTimeout(() => {
} else if (banner.querySelector('.WithAccent')) {
const remainingSolutions = banner.querySelector('.WithAccent').innerText;
const text = (/^it\b/.test(navigator.language)) ? 'Soluzioni Rimanenti:' : 'Remaining Solutions:';
console.log('%cQuizlet%c %s %c%s', consolePrefixStyles,
'color: white;', text,
'color: orange; font-weight: bold;', remainingSolutions);
console.log(
'%cQuizlet%c %s %c%s',
consolePrefixStyles,
'color: white;',
text,
'color: orange; font-weight: bold;',
remainingSolutions,
);
}
}, 1200);

0 comments on commit c55a3a3

Please sign in to comment.