diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-12-02 01:26:28 -0500 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-12-02 01:26:28 -0500 |
commit | 3927014d701bf7ee1a824ccaf613fb7ca2f8185d (patch) | |
tree | b137603a61cecfefcfff7e8448d603fff8a2d03f /src/SMAPI.Web/wwwroot/Content/js | |
parent | e2b19d8a6ba5deb5a3e04c21c8e35cc04aea16b3 (diff) | |
download | SMAPI-3927014d701bf7ee1a824ccaf613fb7ca2f8185d.tar.gz SMAPI-3927014d701bf7ee1a824ccaf613fb7ca2f8185d.tar.bz2 SMAPI-3927014d701bf7ee1a824ccaf613fb7ca2f8185d.zip |
redesign log parser filters
Diffstat (limited to 'src/SMAPI.Web/wwwroot/Content/js')
-rw-r--r-- | src/SMAPI.Web/wwwroot/Content/js/log-parser.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI.Web/wwwroot/Content/js/log-parser.js b/src/SMAPI.Web/wwwroot/Content/js/log-parser.js index 95949a8b..6cce1ce9 100644 --- a/src/SMAPI.Web/wwwroot/Content/js/log-parser.js +++ b/src/SMAPI.Web/wwwroot/Content/js/log-parser.js @@ -27,7 +27,7 @@ smapi.logParser = function(sectionUrl, pasteID) { regexDate = /\[\d{2}:\d{2}:\d{2} TRACE SMAPI\] Log started at (.*?) UTC/g, regexPath = /\[\d{2}:\d{2}:\d{2} DEBUG SMAPI\] Mods go here: (.*?)(?:\n|$)/g; - $("#filters li").on("click", function(evt) { + $("#filters span").on("click", function(evt) { var t = $(evt.currentTarget); t.toggleClass("active"); output.toggleClass(t.text().toLowerCase()); |