feature/share-libs
erb 5 lines 199 Bytes
Raw
1 $('.alert').fadeOut('slow', function() {
2 var div = $('<div class="alert alert-info"><%= @resend_text.html_safe %></div>').hide();
3 $(this).replaceWith(div);
4 $('.alert').fadeIn('slow');
5 });