diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-06-16 01:13:39 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-06-16 01:13:39 -0400 |
commit | f1bdafde238280b771abb1d74ae780b6b86bdc79 (patch) | |
tree | 7eefc9d51dab26cb12f3f2b6d7452008486094b2 /src | |
parent | c9a6d327110806d20877c477095238846a8d83bf (diff) | |
download | SMAPI-f1bdafde238280b771abb1d74ae780b6b86bdc79.tar.gz SMAPI-f1bdafde238280b771abb1d74ae780b6b86bdc79.tar.bz2 SMAPI-f1bdafde238280b771abb1d74ae780b6b86bdc79.zip |
use sharper pufferchick images
Diffstat (limited to 'src')
-rw-r--r-- | src/SMAPI.Web/Views/Index/Index.cshtml | 2 | ||||
-rw-r--r-- | src/SMAPI.Web/wwwroot/Content/images/pufferchick-cool.png | bin | 2921 -> 1099 bytes | |||
-rw-r--r-- | src/SMAPI.Web/wwwroot/Content/images/pufferchick.png | bin | 0 -> 831 bytes | |||
-rw-r--r-- | src/SMAPI.Web/wwwroot/Content/js/index.js | 2 |
4 files changed, 2 insertions, 2 deletions
diff --git a/src/SMAPI.Web/Views/Index/Index.cshtml b/src/SMAPI.Web/Views/Index/Index.cshtml index fbfc2239..8145d354 100644 --- a/src/SMAPI.Web/Views/Index/Index.cshtml +++ b/src/SMAPI.Web/Views/Index/Index.cshtml @@ -34,7 +34,7 @@ </div><br /> } <a href="https://stardewvalleywiki.com/Modding:Player_Guide" class="secondary-cta">Player guide</a><br /> - <img id="pufferchick" src="favicon.ico" /> + <img id="pufferchick" src="Content/images/pufferchick.png" /> </div> <h2>Get help</h2> diff --git a/src/SMAPI.Web/wwwroot/Content/images/pufferchick-cool.png b/src/SMAPI.Web/wwwroot/Content/images/pufferchick-cool.png Binary files differindex 63eb8970..f359146c 100644 --- a/src/SMAPI.Web/wwwroot/Content/images/pufferchick-cool.png +++ b/src/SMAPI.Web/wwwroot/Content/images/pufferchick-cool.png diff --git a/src/SMAPI.Web/wwwroot/Content/images/pufferchick.png b/src/SMAPI.Web/wwwroot/Content/images/pufferchick.png Binary files differnew file mode 100644 index 00000000..1de9cf47 --- /dev/null +++ b/src/SMAPI.Web/wwwroot/Content/images/pufferchick.png diff --git a/src/SMAPI.Web/wwwroot/Content/js/index.js b/src/SMAPI.Web/wwwroot/Content/js/index.js index 8fa1c26f..d0734b02 100644 --- a/src/SMAPI.Web/wwwroot/Content/js/index.js +++ b/src/SMAPI.Web/wwwroot/Content/js/index.js @@ -6,7 +6,7 @@ $(document).ready(function () { pufferchick.attr("src", "Content/images/pufferchick-cool.png"); }, function () { - pufferchick.attr("src", "favicon.ico"); + pufferchick.attr("src", "Content/images/pufferchick.png"); } ); |