refactor: Remove deprecated scroll handler

This commit is contained in:
Thomas A. Christensen II 2024-11-07 08:28:49 -06:00
parent da28273e1a
commit ca49a6a315
Signed by: millironx
GPG key ID: B7044A3432851F64

View file

@ -1,4 +1,4 @@
$(window).scroll(function (e) {
$(window).on("scroll", function (e) {
oVal = $(window).scrollTop() / 170;
$(".blur").css("opacity", oVal);
});