view gcalendar/static/js/gcalendar_edit.js @ 1102:1a4f4a69e244

Membermap now uses new post box.
author Brian Neal <bgneal@gmail.com>
date Wed, 06 Jul 2016 20:03:59 -0500
parents 110bbc78a482
children
line wrap: on
line source
$(document).ready(function() {
   $('.gcal-del').click(function () {
      if (confirm('Really delete this event?')) {
         var id = this.id;
         if (id.match(/gcal-(\d+)/)) {
            $.ajax({
               url: '/calendar/delete/', 
               type: 'POST',
               data: { id : RegExp.$1 }, 
               dataType: 'text',
               success: function (id) {
                  var rowId = '#gcal-row-' + id;
                  $(rowId).fadeOut(800);
               }, 
               error: function (xhr, textStatus, ex) {
                  alert('Oops, an error occurred. ' + xhr.statusText + ' - ' + 
                     xhr.responseText);
               }
            });
         }
      }
      return false;
      });
});