rhymix/modules/advanced_mailer/tpl/js/view_log.js
2016-05-22 23:50:15 +09:00

15 lines
281 B
JavaScript

(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));