Skip to content

Commit

Permalink
Merge pull request #95 from TKanX/main
Browse files Browse the repository at this point in the history
Fix display issue in hazy options after reset button click
  • Loading branch information
Astromations authored May 26, 2024
2 parents 847e910 + 141a1a2 commit 6a40a67
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions hazy.js
Original file line number Diff line number Diff line change
Expand Up @@ -652,10 +652,10 @@
document.querySelector(".hazyOptionRow #satu-input").value = 70;
document.querySelector(".hazyOptionRow #bright-input").value = 120;

document.querySelector(".hazyOptionRow #blur-value").textContent = "15px";
document.querySelector(".hazyOptionRow #cont-value").textContent = "50%";
document.querySelector(".hazyOptionRow #satu-value").textContent = "70%";
document.querySelector(".hazyOptionRow #bright-value").textContent = "120%";
document.querySelector(".hazyOptionRow #blur-value").textContent = "15";
document.querySelector(".hazyOptionRow #cont-value").textContent = "50";
document.querySelector(".hazyOptionRow #satu-value").textContent = "70";
document.querySelector(".hazyOptionRow #bright-value").textContent = "120";


localStorage.setItem(value.getAttribute("blur_am"), 8);
Expand Down

0 comments on commit 6a40a67

Please sign in to comment.