Skip to content

Commit

Permalink
remove logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Jazza-231 committed Dec 1, 2023
1 parent 9574b42 commit 4191ef2
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions addons/percentage-stats/userscript.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@ export default async function ({ addon, console }) {
favs: Math.round((stats.favs / stats.views) * 100) + "%",
remixes: Math.round((stats.remixes / stats.views) * 100) + "%",
};
console.log(els);
console.log(stats);
console.log(percentages);

const modalL = document.createElement("div");
modalL.className = "loves-modal";
Expand Down Expand Up @@ -48,10 +45,6 @@ export default async function ({ addon, console }) {
showModal.style.left = `${rect.left}px`;
showModal.innerText = percentages[showKey];
showModal.style.opacity = 1;
console.log(rect.top);
console.log(showModal.offsetHeight);
console.log(modalMargin);
console.log(showModal.style.top);
}

function hideModal(hideKey) {
Expand Down

0 comments on commit 4191ef2

Please sign in to comment.