diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-06-11 10:56:59 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-06-11 10:56:59 -0400 |
commit | 6c08f774250b252c09b282a663b3947acb3a6741 (patch) | |
tree | 85b8d6c15c16a18b684e70d1a9b0fddf2a2f6e05 /src/SMAPI.Web/Views | |
parent | c41e1ed5c16d5402fa373267095e28121b4055f2 (diff) | |
download | SMAPI-6c08f774250b252c09b282a663b3947acb3a6741.tar.gz SMAPI-6c08f774250b252c09b282a663b3947acb3a6741.tar.bz2 SMAPI-6c08f774250b252c09b282a663b3947acb3a6741.zip |
fix log parser not using full width for log
Diffstat (limited to 'src/SMAPI.Web/Views')
-rw-r--r-- | src/SMAPI.Web/Views/Index/Index.cshtml | 2 | ||||
-rw-r--r-- | src/SMAPI.Web/Views/LogParser/Index.cshtml | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/SMAPI.Web/Views/Index/Index.cshtml b/src/SMAPI.Web/Views/Index/Index.cshtml index 6dc0a338..0f056ada 100644 --- a/src/SMAPI.Web/Views/Index/Index.cshtml +++ b/src/SMAPI.Web/Views/Index/Index.cshtml @@ -3,7 +3,7 @@ } @model StardewModdingAPI.Web.ViewModels.IndexModel @section Head { - <link rel="stylesheet" href="~/Content/css/index.css" /> + <link rel="stylesheet" href="~/Content/css/index.css?r=20180611" /> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js" crossorigin="anonymous"></script> <script src="~/Content/js/index.js"></script> } diff --git a/src/SMAPI.Web/Views/LogParser/Index.cshtml b/src/SMAPI.Web/Views/LogParser/Index.cshtml index 7307817c..4d95901e 100644 --- a/src/SMAPI.Web/Views/LogParser/Index.cshtml +++ b/src/SMAPI.Web/Views/LogParser/Index.cshtml @@ -12,10 +12,10 @@ { <meta name="robots" content="noindex" /> } - <link rel="stylesheet" href="~/Content/css/log-parser.css?r=20180603" /> + <link rel="stylesheet" href="~/Content/css/log-parser.css?r=20180611" /> <script src="https://cdn.jsdelivr.net/npm/vue"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js" crossorigin="anonymous"></script> - <script src="~/Content/js/log-parser.js?r=20180603"></script> + <script src="~/Content/js/log-parser.js?r=20180611"></script> <script> $(function() { smapi.logParser({ |