Guest User

Untitled

a guest
Jul 23rd, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. <%- if flash.key?(:error) -%>
  2. $("form#new_comment").prepend('<div id="comment-error"><%= escape_javascript(flash.delete(:error)) %></div>');
  3. $("div#comment-error").fadeOut(6000, function() {
  4. $(this).remove()
  5. });
  6. <%- else -%>
  7. $("form#new_comment").prepend('<div id="comment-notice"><%= escape_javascript(flash.delete(:notice)) %></div>');
  8. $("form#new_comment")[0].reset();
  9. $("div#comment-notice").fadeOut(6000, function() {
  10. $(this).remove()
  11. });
  12. <%- end -%>
Add Comment
Please, Sign In to add comment