Commit 24911863 authored by Tobias Schmidt's avatar Tobias Schmidt

Add windows to popular os and remove 386

parent c9af19e4
......@@ -35,8 +35,8 @@ $(document).ready(function() {
var arch = $('.download-selection .arch .caption').text();
$('.downloads tbody tr').each(function() {
if (selected($(this).data('os').toString(), os, ['darwin', 'linux'])
&& selected($(this).data('arch').toString(), arch, ['386', 'amd64'])) {
if (selected($(this).data('os').toString(), os, ['darwin', 'linux', 'windows'])
&& selected($(this).data('arch').toString(), arch, ['amd64'])) {
$(this).show();
} else {
$(this).hide();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment