Mercurial > public > sg101
view messages/static/js/messages.js @ 892:79a71b9d0a2a
Use Reply-To header when sending mail from other users.
See issue #81.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Mon, 16 Feb 2015 20:30:48 -0600 |
parents | cf486a8e8b43 |
children |
line wrap: on
line source
function tabMasterCheckClick(box, name) { var state = $(box).prop('checked'); $('input[name="' + name + '"]').each(function() { this.checked = state; }); } function bulkMsgAction(action) { var total = $('input[name="pm_ids"]:checked').length; if (total <= 0) { alert('Please check some messages first.'); return false; } return confirm("Really " + action + " checked messages?"); return false; }