From cd3dbc47aa6e112d8695bcb9ed81f0b422f21e5c Mon Sep 17 00:00:00 2001
From: Jesse Plamondon-Willard <github@jplamondonw.com>
Date: Wed, 25 Apr 2018 12:11:28 -0400
Subject: update release notes, tweak formatting (#477)

---
 src/SMAPI.Web/wwwroot/Content/js/index.js | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)

(limited to 'src/SMAPI.Web/wwwroot')

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");
+        }
+    );
 });
-- 
cgit