Mercurial > public > sg101
annotate messages/static/js/messages.js @ 1166:130ac1e98cf4
More V3 forums tweaking.
Adding attachments is working now.
Adding a post via ajax is working.
Still need to display attachments on posts.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 20 Aug 2017 15:55:54 -0500 |
parents | cf486a8e8b43 |
children |
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@818 | 9 var total = $('input[name="pm_ids"]:checked').length; |
bgneal@818 | 10 if (total <= 0) { |
bgneal@818 | 11 alert('Please check some messages first.'); |
bgneal@818 | 12 return false; |
bgneal@818 | 13 } |
bgneal@806 | 14 return confirm("Really " + action + " checked messages?"); |
bgneal@425 | 15 return false; |
bgneal@425 | 16 } |