Skip to content

Commit

Permalink
1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bradp committed Apr 1, 2023
1 parent 06ae995 commit 7709b6b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions mh-spring-egg-hunt-helper.user.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// ==UserScript==
// @name 🐭️ MouseHunt - Spring Egg Hunt Helper
// @version 1.4.0
// @version 1.4.1
// @description Make the Spring Egg Hunt / Eggscavator interface better.
// @license MIT
// @author bradp
Expand Down Expand Up @@ -1854,7 +1854,7 @@
item.classList.toggle('scrambles-flip');
});

icon.addEventListener('mousewheel', (e) => {
icon.addEventListener('wheel', (e) => {
e.preventDefault();
const scale = e.deltaY > 0 ? 0.9 : 1.1;
const transform = icon.style.transform;
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mh-spring-egg-hunt-helper",
"version": "1.4.0",
"version": "1.4.1",
"description": "",
"main": "mh-spring-egg-hunt-helper.user.js",
"scripts": {
Expand Down

0 comments on commit 7709b6b

Please sign in to comment.