annotate messages/static/js/messages.js @ 953:8647a669edb4

Fix excessive cache usage for forum date/times. Issue #84. Hitting the cache 30+ times while browsing the forums to adjust all the dates/times into the user's time zone. Just hit the user's profile and be done with it. It should be loaded.
author Brian Neal <bgneal@gmail.com>
date Tue, 19 May 2015 21:08:45 -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 }