blob: 482b6ff910b707e5d87d5e003f2026a91c22654c (
plain)
1
2
3
4
5
6
7
8
9
10
|
<% if @error == nil %>
Element.insert('commentslist', { bottom: '<%= escape_javascript(@comment_text).html_safe %>'});
Modalbox.hide();
<% else %>
<% if @error.is_a? ActiveModel::Errors %>
alert('<%= escape_javascript(@error.full_messages.join "\n").html_safe %>');
<% else %>
alert('<%= escape_javascript(@error).html_safe %>');
<% end %>
<% end %>
|