fatfreecrm/fat_free_crm

View on GitHub
app/views/comments/update.js.haml

Summary

Maintainability
Test Coverage
- id = dom_id(@comment)

- if @comment.errors.empty?
  $('##{id}').replaceWith('#{ j render(partial: "comment", collection: [ @comment ]) }');
  $('##{id}').effect("highlight", { duration:1500 });
- else
  $('##{id}').html('#{ j render(partial: "edit") }');
  $('#comment_comment').focus();