diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-04-25 12:11:28 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-04-25 12:11:28 -0400 |
commit | cd3dbc47aa6e112d8695bcb9ed81f0b422f21e5c (patch) | |
tree | b896f5e029abb3dc37c06225302ba320c66aefed /src/SMAPI.Web/wwwroot/Content/js | |
parent | 379bc7bcc2db5debf4fe305204d55041d6e463a8 (diff) | |
download | SMAPI-cd3dbc47aa6e112d8695bcb9ed81f0b422f21e5c.tar.gz SMAPI-cd3dbc47aa6e112d8695bcb9ed81f0b422f21e5c.tar.bz2 SMAPI-cd3dbc47aa6e112d8695bcb9ed81f0b422f21e5c.zip |
update release notes, tweak formatting (#477)
Diffstat (limited to 'src/SMAPI.Web/wwwroot/Content/js')
-rw-r--r-- | src/SMAPI.Web/wwwroot/Content/js/index.js | 13 |
1 files changed, 8 insertions, 5 deletions
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"); + } + ); }); |