summaryrefslogtreecommitdiffstats
path: root/media
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2010-10-20 17:39:42 -0500
committerDan McGee <dan@archlinux.org>2010-10-20 17:39:42 -0500
commit29218aa752dad072278fbb59ad166697f5dc719c (patch)
tree9803ecbd5269e7c37809e293430c819240d8fa60 /media
parentfe3858eee160a200e70d6e4b558c70ce8d520bf8 (diff)
downloadarchweb-29218aa752dad072278fbb59ad166697f5dc719c.tar.gz
archweb-29218aa752dad072278fbb59ad166697f5dc719c.zip
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')
-rw-r--r--media/archweb.js2
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") {