Add advanced mailer module

This commit is contained in:
Kijin Sung 2016-05-22 23:50:15 +09:00
parent 0961253a74
commit f9394ca26d
26 changed files with 1997 additions and 0 deletions

View file

@ -0,0 +1,15 @@
(function($) {
$(function() {
$("a.show-errors").click(function(event) {
event.preventDefault();
var error_msg = $(this).siblings("div.mail-log-errors").html();
alert(error_msg);
$(".x_modal._common._small").removeClass("_small");
});
});
} (jQuery));