Skip to content

Commit

Permalink
Merge ""Select all" checkboxes now don't select hidden items"
Browse files Browse the repository at this point in the history
  • Loading branch information
Jenkins authored and openstack-gerrit committed Aug 14, 2012
2 parents 5531909 + 81af6d9 commit 6a638b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion horizon/static/horizon/js/horizon.tables.js
Expand Up @@ -233,7 +233,7 @@ horizon.addInitFunction(function() {
var $this = $(this),
$table = $this.closest('table'),
is_checked = $this.prop('checked'),
checkboxes = $table.find('tbody :checkbox');
checkboxes = $table.find('tbody :visible:checkbox');
checkboxes.prop('checked', is_checked);
});

Expand Down

0 comments on commit 6a638b0

Please sign in to comment.