summaryrefslogtreecommitdiff
path: root/src/SMAPI.Web/wwwroot/Content/js/log-parser.js
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2022-01-15 23:41:01 -0500
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2022-01-15 23:41:01 -0500
commit7e8d11ca3aff9a7e741127cd5fd35d073c381ec9 (patch)
tree4c4cc4dffb2fafd42452c5586a192b62cba60ff3 /src/SMAPI.Web/wwwroot/Content/js/log-parser.js
parent6f05580191e27bdf876d75a967a3238947d5a091 (diff)
downloadSMAPI-7e8d11ca3aff9a7e741127cd5fd35d073c381ec9.tar.gz
SMAPI-7e8d11ca3aff9a7e741127cd5fd35d073c381ec9.tar.bz2
SMAPI-7e8d11ca3aff9a7e741127cd5fd35d073c381ec9.zip
add Xbox app log instructions, redesign UI to fit
Diffstat (limited to 'src/SMAPI.Web/wwwroot/Content/js/log-parser.js')
-rw-r--r--src/SMAPI.Web/wwwroot/Content/js/log-parser.js11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/SMAPI.Web/wwwroot/Content/js/log-parser.js b/src/SMAPI.Web/wwwroot/Content/js/log-parser.js
index 6ae1707e..90715375 100644
--- a/src/SMAPI.Web/wwwroot/Content/js/log-parser.js
+++ b/src/SMAPI.Web/wwwroot/Content/js/log-parser.js
@@ -115,17 +115,6 @@ smapi.logParser = function (data, sectionUrl) {
*********/
var input = $("#input");
if (input.length) {
- // instructions per OS
- var systemOptions = $("input[name='os']");
- var systemInstructions = $("div[data-os]");
-
- var chooseSystem = function () {
- systemInstructions.hide();
- systemInstructions.filter("[data-os='" + $("input[name='os']:checked").val() + "']").show();
- };
- systemOptions.on("click", chooseSystem);
- chooseSystem();
-
// file upload
smapi.fileUpload({
chooseFileLink: $("#choose-file-link"),