diff options
author | Dan McGee <dan@archlinux.org> | 2010-10-20 17:39:42 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-10-20 17:39:42 -0500 |
commit | 29218aa752dad072278fbb59ad166697f5dc719c (patch) | |
tree | 9803ecbd5269e7c37809e293430c819240d8fa60 /media/archweb.js | |
parent | fe3858eee160a200e70d6e4b558c70ce8d520bf8 (diff) |
Package differences small updates
* Add 'multilib-testing' to the CSS class list to hide for [multilib]
* Select 'Only In Both' by default, which is probably the most useful option
* Unselect 'Minor Version Mismatches' by default
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'media/archweb.js')
-rw-r--r-- | media/archweb.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/media/archweb.js b/media/archweb.js index ea287ab0..5e315f35 100644 --- a/media/archweb.js +++ b/media/archweb.js @@ -79,7 +79,7 @@ filter_packages = function() { // start with all rows, and then remove ones we shouldn't show var rows = $(".results tbody tr"); if(!$('#id_multilib').is(':checked')) { - rows = rows.not(".multilib"); + rows = rows.not(".multilib").not(".multilib-testing"); } var arch = $("#id_archonly").val(); if(arch !== "all") { |