Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
bradp committed Aug 9, 2023
1 parent 0f9f71a commit 22be9c4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mh-no-footer.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,11 @@
// @grant none
// @run-at document-end
// ==/UserScript==

((function () {
'use strict';

const addStyles = document.createElement('style');
addStyles.innerHTML = `.pageFrameView-footer, .mousehuntFooter { display: none; }`;
addStyles.innerHTML = '.pageFrameView-footer, .mousehuntFooter { display: none; }';
document.head.appendChild(addStyles);
})());

0 comments on commit 22be9c4

Please sign in to comment.