Commit c5aa6fa7 authored by Brian Rosner's avatar Brian Rosner
Browse files

Fixed #10597 -- select all checkbox on admin changelist now works under IE 6...

Fixed #10597 -- select all checkbox on admin changelist now works under IE 6 and 7. Thanks kyle.fox.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@10135 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent e5a8d9e8
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -3,8 +3,8 @@ var Actions = {
        selectAll = document.getElementById('action-toggle');
        if (selectAll) {
            selectAll.style.display = 'inline';
            addEvent(selectAll, 'change', function() {
                Actions.checker(this.checked);
            addEvent(selectAll, 'click', function() {
                Actions.checker(selectAll.checked);
            });
        }
    },