summaryrefslogtreecommitdiff
path: root/src/SMAPI.Web/wwwroot/Content/js
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2022-07-08 19:38:03 -0400
committerGitHub <noreply@github.com>2022-07-08 19:38:03 -0400
commitfbca048fcb135fb19ee1601961922be422eba8ee (patch)
tree92a722152dabae259a5466892ed949f5f3fe8828 /src/SMAPI.Web/wwwroot/Content/js
parent4850e80e564abf14b29af4ed7dcdc049d781f7fc (diff)
parent477ecbab6ee4f011c68736c821cbe1476b384d29 (diff)
downloadSMAPI-fbca048fcb135fb19ee1601961922be422eba8ee.tar.gz
SMAPI-fbca048fcb135fb19ee1601961922be422eba8ee.tar.bz2
SMAPI-fbca048fcb135fb19ee1601961922be422eba8ee.zip
Merge pull request #857 from ishanjalan/develop
Change pufferchick web icons to SVG
Diffstat (limited to 'src/SMAPI.Web/wwwroot/Content/js')
-rw-r--r--src/SMAPI.Web/wwwroot/Content/js/index.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/SMAPI.Web/wwwroot/Content/js/index.js b/src/SMAPI.Web/wwwroot/Content/js/index.js
index d0734b02..04db5c2f 100644
--- a/src/SMAPI.Web/wwwroot/Content/js/index.js
+++ b/src/SMAPI.Web/wwwroot/Content/js/index.js
@@ -3,10 +3,10 @@ $(document).ready(function () {
var pufferchick = $("#pufferchick");
$(".cta-dropdown").hover(
function () {
- pufferchick.attr("src", "Content/images/pufferchick-cool.png");
+ pufferchick.attr("src", "Content/images/pufferchick-cool.svg");
},
function () {
- pufferchick.attr("src", "Content/images/pufferchick.png");
+ pufferchick.attr("src", "Content/images/pufferchick.svg");
}
);