aboutsummaryrefslogtreecommitdiff
path: root/app/dashboard/static/js/linaro-boots-job-kernel-1.0.8.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/dashboard/static/js/linaro-boots-job-kernel-1.0.8.js')
-rw-r--r--app/dashboard/static/js/linaro-boots-job-kernel-1.0.8.js8
1 files changed, 5 insertions, 3 deletions
diff --git a/app/dashboard/static/js/linaro-boots-job-kernel-1.0.8.js b/app/dashboard/static/js/linaro-boots-job-kernel-1.0.8.js
index 75db671..9811d96 100644
--- a/app/dashboard/static/js/linaro-boots-job-kernel-1.0.8.js
+++ b/app/dashboard/static/js/linaro-boots-job-kernel-1.0.8.js
@@ -92,6 +92,8 @@ function showHideBoots(element) {
$('.df-failed').show();
$('.df-success').show();
$('.df-unknown').show();
+ $('#all-btn').addClass('active').siblings()
+ .removeClass('active');
break;
}
}
@@ -427,13 +429,13 @@ function populateBootsPage(data) {
if (searchFilter.length > 0) {
switch (searchFilter) {
case 'fail':
- showHideBoots($('#fail-cell'));
+ showHideBoots(document.getElementById('fail-cell'));
break;
case 'success':
- showHideBoots($('#success-cell'));
+ showHideBoots(document.getElementById('success-cell'));
break;
case 'unknown':
- showHideBoots($('#unknown-cell'));
+ showHideBoots(document.getElementById('unknown-cell'));
break;
}
}