diff --git a/__pycache__/dashboard.cpython-310.pyc b/__pycache__/dashboard.cpython-310.pyc index ab7ebca..66600d3 100644 Binary files a/__pycache__/dashboard.cpython-310.pyc and b/__pycache__/dashboard.cpython-310.pyc differ diff --git a/dashboard_static/js/events.js b/dashboard_static/js/events.js index 1994b5f..b6ad6b5 100644 --- a/dashboard_static/js/events.js +++ b/dashboard_static/js/events.js @@ -26,8 +26,8 @@ $(".sport").on("click", function() { selectedSports.push(sportName) // Add sport to array } - $(this).trigger("selected", [selectedSports.includes(sportName), selectedSports]) // Trigger event showFeeds() + $(this).trigger("selected", [selectedSports.includes(sportName), selectedSports]) // Trigger event }) $(window).on("resize", function(){ diff --git a/dashboard_static/style/responsive.css b/dashboard_static/style/responsive.css index 379fbba..175b042 100644 --- a/dashboard_static/style/responsive.css +++ b/dashboard_static/style/responsive.css @@ -9,6 +9,7 @@ @media only screen and (max-width: 850px) { .maintable { grid-template-columns: 1fr; + grid-template-rows: 1fr 100%; } .header-title { display: none; @@ -22,6 +23,15 @@ .colheader { font-size: 32px; } + .popchart { + display: none; + } + .leftcol { + overflow-y: auto; + } + .rightcol { + grid-row: 1; + } } diff --git a/eca/__pycache__/arff.cpython-310.pyc b/eca/__pycache__/arff.cpython-310.pyc index 1516621..dab7427 100644 Binary files a/eca/__pycache__/arff.cpython-310.pyc and b/eca/__pycache__/arff.cpython-310.pyc differ diff --git a/eca/__pycache__/generators.cpython-310.pyc b/eca/__pycache__/generators.cpython-310.pyc index 155bc4d..01498c6 100644 Binary files a/eca/__pycache__/generators.cpython-310.pyc and b/eca/__pycache__/generators.cpython-310.pyc differ