mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-08 19:21:40 +09:00
15 lines
280 B
JavaScript
15 lines
280 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);
|