2011-03-20 19:26:07 -07:00
|
|
|
$(function() {
|
|
|
|
|
|
|
|
|
|
/* Everything about this JS violates DRY. But it will work for now */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$(".pagingEmail").find('a').click(function() {
|
2011-03-20 21:31:00 -07:00
|
|
|
alert("BOO");
|
2011-03-20 19:26:07 -07:00
|
|
|
$('#emailTable').fadeOut('slow');
|
|
|
|
|
|
|
|
|
|
$("#ajaxLoadEmail").bind("ajaxSend", function() {
|
|
|
|
|
$(this).show();
|
|
|
|
|
}).bind("ajaxComplete", function() {
|
|
|
|
|
$(this).hide();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$.get($(this).attr('href'), function(data) {
|
|
|
|
|
$('#emailTable').html(data);
|
|
|
|
|
$('#emailTable').fadeIn('slow');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|