Mercurial > public > sg101
diff messages/static/js/tabbed_messages.js @ 731:796103a2215b
Fix messages master checkbox behavior. See also 6ba401391cd5.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Wed, 09 Oct 2013 20:52:48 -0500 |
parents | c09ed90c891b |
children |
line wrap: on
line diff
--- a/messages/static/js/tabbed_messages.js Sun Oct 06 15:11:22 2013 -0500 +++ b/messages/static/js/tabbed_messages.js Wed Oct 09 20:52:48 2013 -0500 @@ -170,7 +170,7 @@ } function tabMasterCheckClick(box, name) { - var state = $(box).attr('checked'); + var state = $(box).prop('checked'); $('input[name="' + name + '"]').each(function() { this.checked = state; });