Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed #10597 -- select all checkbox on admin changelist now works und…
…er IE 6 and 7. Thanks kyle.fox.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@10135 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
brosner committed Mar 24, 2009
1 parent e5a8d9e commit c5aa6fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions django/contrib/admin/media/js/actions.js
Expand Up @@ -3,8 +3,8 @@ var Actions = {
selectAll = document.getElementById('action-toggle'); selectAll = document.getElementById('action-toggle');
if (selectAll) { if (selectAll) {
selectAll.style.display = 'inline'; selectAll.style.display = 'inline';
addEvent(selectAll, 'change', function() { addEvent(selectAll, 'click', function() {
Actions.checker(this.checked); Actions.checker(selectAll.checked);
}); });
} }
}, },
Expand Down

0 comments on commit c5aa6fa

Please sign in to comment.