diff options
author | Dan Volchek <volchek2@illinois.edu> | 2018-04-23 01:58:18 -0500 |
---|---|---|
committer | Dan Volchek <volchek2@illinois.edu> | 2018-04-23 01:58:18 -0500 |
commit | 82f418a38baeb44f68601708ebbd3c4af03ef6da (patch) | |
tree | 9454eae8a333ef7ef5774aabad39390ea38287cc /src/SMAPI.Web/wwwroot | |
parent | 2bc9184464261f918abe142de566cd82cf565918 (diff) | |
download | SMAPI-82f418a38baeb44f68601708ebbd3c4af03ef6da.tar.gz SMAPI-82f418a38baeb44f68601708ebbd3c4af03ef6da.tar.bz2 SMAPI-82f418a38baeb44f68601708ebbd3c4af03ef6da.zip |
add missing semicolon
Diffstat (limited to 'src/SMAPI.Web/wwwroot')
-rw-r--r-- | src/SMAPI.Web/wwwroot/Content/js/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI.Web/wwwroot/Content/js/index.js b/src/SMAPI.Web/wwwroot/Content/js/index.js index c53592f8..46f78fbe 100644 --- a/src/SMAPI.Web/wwwroot/Content/js/index.js +++ b/src/SMAPI.Web/wwwroot/Content/js/index.js @@ -5,6 +5,6 @@ $(document).ready(function () { pufferchick.attr("src", "Content/images/pufferchick-cool.png"); }, function () { pufferchick.attr("src", "favicon.ico"); - }) + }); }); }); |