diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2020-02-18 00:31:36 -0500 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2020-02-18 00:31:36 -0500 |
commit | 7f63e065917f8879f42dbac92748702bfb6d044d (patch) | |
tree | 02f9c58e26bd7229972b0e3ba37d2a16398df724 /src/SMAPI.Web/Views | |
parent | 4ce27475675ddeb9a5fcdec0e460553f0f608be7 (diff) | |
download | SMAPI-7f63e065917f8879f42dbac92748702bfb6d044d.tar.gz SMAPI-7f63e065917f8879f42dbac92748702bfb6d044d.tar.bz2 SMAPI-7f63e065917f8879f42dbac92748702bfb6d044d.zip |
fix anchor position for new sticky header
Diffstat (limited to 'src/SMAPI.Web/Views')
-rw-r--r-- | src/SMAPI.Web/Views/Mods/Index.cshtml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/SMAPI.Web/Views/Mods/Index.cshtml b/src/SMAPI.Web/Views/Mods/Index.cshtml index 5b310d55..b1d9ae2c 100644 --- a/src/SMAPI.Web/Views/Mods/Index.cshtml +++ b/src/SMAPI.Web/Views/Mods/Index.cshtml @@ -8,11 +8,11 @@ TimeSpan staleAge = DateTimeOffset.UtcNow - Model.LastUpdated; } @section Head { - <link rel="stylesheet" href="~/Content/css/mods.css?r=20190302" /> + <link rel="stylesheet" href="~/Content/css/mods.css?r=20200218" /> <script src="https://cdn.jsdelivr.net/npm/vue@2.5.17/dist/vue.min.js" crossorigin="anonymous"></script> <script src="https://cdn.jsdelivr.net/npm/jquery@3.3.1/dist/jquery.min.js" crossorigin="anonymous"></script> <script src="https://cdn.jsdelivr.net/npm/tablesorter@2.31.0/dist/js/jquery.tablesorter.combined.min.js" crossorigin="anonymous"></script> - <script src="~/Content/js/mods.js?r=20190302"></script> + <script src="~/Content/js/mods.js?r=20200218"></script> <script> $(function() { var data = @Json.Serialize(Model.Mods, new JsonSerializerSettings { Formatting = Formatting.None }); |