kaize/mail_sandbox_web

View on GitHub
app/assets/javascripts/mail_messages.js

Summary

Maintainability
A
0 mins
Test Coverage
$(function(){
  $('a.del_msg').on('ajax:success', function(event, data, status, xhr){
    $(this).closest('tr').fadeOut('slow', function(){
      $(this).remove();
    });
  });

  $('a.read_msg').on('ajax:success', function(event, data, status, xhr){
    $(this).fadeOut('slow');
  });
});