Mercurial > public > sg101
annotate messages/static/js/messages.js @ 810:4a4fa174a0ec
Private message refactor: adding ability to report PM's.
See also Bitbucket issue #57.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 06 Sep 2014 16:58:08 -0500 |
parents | 59e36169a814 |
children | cf486a8e8b43 |
rev | line source |
---|---|
bgneal@425 | 1 function tabMasterCheckClick(box, name) { |
bgneal@731 | 2 var state = $(box).prop('checked'); |
bgneal@425 | 3 $('input[name="' + name + '"]').each(function() { |
bgneal@425 | 4 this.checked = state; |
bgneal@425 | 5 }); |
bgneal@425 | 6 } |
bgneal@425 | 7 |
bgneal@806 | 8 function bulkMsgAction(action) { |
bgneal@806 | 9 return confirm("Really " + action + " checked messages?"); |
bgneal@425 | 10 return false; |
bgneal@425 | 11 } |