diff --git a/resources/base.scss b/resources/base.scss index 6b62d50..7a87346 100644 --- a/resources/base.scss +++ b/resources/base.scss @@ -785,6 +785,11 @@ math { z-index: 1000; } +select { + visibility: hidden; + max-height: 0; +} + @media (max-width: 500px) { #notification { margin-top: 0.6em; diff --git a/templates/three-column-content.html b/templates/three-column-content.html index 2c219b0..0e89e36 100644 --- a/templates/three-column-content.html +++ b/templates/three-column-content.html @@ -75,14 +75,13 @@ } function registerNavigation() { - $('.pagination a').on('click', function(e) { - e.preventDefault(); - navigateTo($(this)); - }) - $('.tabs a').on('click', function(e) { - e.preventDefault(); - navigateTo($(this)); - }) + const links = ['.pagination a', '.tabs a', '.problem-feed-option a']; + for (link of links) { + $(link).on('click', function(e) { + e.preventDefault(); + navigateTo($(this)); + }) + } } $(function () {