summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/release-notes.md3
-rw-r--r--src/SMAPI.Web/wwwroot/Content/js/index.js13
2 files changed, 11 insertions, 5 deletions
diff --git a/docs/release-notes.md b/docs/release-notes.md
index 38a8b00d..308007bb 100644
--- a/docs/release-notes.md
+++ b/docs/release-notes.md
@@ -18,6 +18,9 @@
* **Breaking change**: dropped some deprecated APIs.
* **Breaking change**: mods can't intercept chatbox input, including the game's hotkey to toggle the chatbox (default `T`).
+* For the log parser:
+ * The pufferchick is now more stylish.
+
* For SMAPI developers:
* Added more consistent crossplatform handling using a new `EnvironmentUtility`.
* Added MacOS detection.
diff --git a/src/SMAPI.Web/wwwroot/Content/js/index.js b/src/SMAPI.Web/wwwroot/Content/js/index.js
index ac05df05..016d5fa4 100644
--- a/src/SMAPI.Web/wwwroot/Content/js/index.js
+++ b/src/SMAPI.Web/wwwroot/Content/js/index.js
@@ -1,8 +1,11 @@
$(document).ready(function () {
var pufferchick = $("#pufferchick");
- $(".download").hover(function () {
- pufferchick.attr("src", "Content/images/pufferchick-cool.png");
- }, function () {
- pufferchick.attr("src", "favicon.ico");
- });
+ $(".download").hover(
+ function () {
+ pufferchick.attr("src", "Content/images/pufferchick-cool.png");
+ },
+ function () {
+ pufferchick.attr("src", "favicon.ico");
+ }
+ );
});