diff options
author | filip <filip.komar@gmail.com> | 2017-12-03 21:45:01 +0100 |
---|---|---|
committer | filip <filip.komar@gmail.com> | 2017-12-03 21:45:01 +0100 |
commit | 7940c06d23e6abfa09d6a0ac197200a414f21022 (patch) | |
tree | 6ef93c849055a907212c8265a991c6ff6be54dff /en/downloads/get | |
parent | 292a829b78f2ccebe301fcb71414c14207dce059 (diff) | |
download | www-7940c06d23e6abfa09d6a0ac197200a414f21022.tar www-7940c06d23e6abfa09d6a0ac197200a414f21022.tar.gz www-7940c06d23e6abfa09d6a0ac197200a414f21022.tar.bz2 www-7940c06d23e6abfa09d6a0ac197200a414f21022.tar.xz www-7940c06d23e6abfa09d6a0ac197200a414f21022.zip |
fix showing of other mirrors
Diffstat (limited to 'en/downloads/get')
-rw-r--r-- | en/downloads/get/index.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/en/downloads/get/index.php b/en/downloads/get/index.php index 8f10eece9..62674f79d 100644 --- a/en/downloads/get/index.php +++ b/en/downloads/get/index.php @@ -300,7 +300,7 @@ gpg: There is no indication that the signature belongs to the owner. </div> <!-- alternative mirrors table --> - <table class="dlt2 dlinfo table table-sm table-bordered table-striped" id="other_mirrors" style="display: none;"> + <table class="dlt2 dlinfo table table-sm table-bordered table-striped" id="om" style="display: none;"> <thead class="thead-inverse"><tr><th><?php _g('Country'); ?></th> <th><?php _g('City'); ?></th> <th><?php _g('Download mirrors'); ?></th></tr></thead> @@ -349,7 +349,7 @@ gpg: There is no indication that the signature belongs to the owner. <?php echo common_footer($locale); ?> <script> document.getElementById("other_mirrors_btn").onclick = function () { - var el = document.getElementById("other_mirrors"); + var el = document.getElementById("om"); el.style.display = (el.style.display != 'none' ? 'none' : '' ); }; |