annotate messages/static/js/messages.js @ 821:71db8076dc3d

Bandmap WIP: geocoding integrated with add form. Add form works. Before submitting the form, client side JS makes a geocode request to Google and populates hidden lat/lon fields with the result. Successfully created a model instance on the server side. Still need to update admin dashboard, admin approval, and give out badges for adding bands to the map. Once that is done, then work on displaying the map with filtering.
author Brian Neal <bgneal@gmail.com>
date Tue, 23 Sep 2014 20:40:31 -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 }