fatfreecrm/fat_free_crm

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

Summary

Maintainability
Test Coverage
- id = dom_id(@comment)

- if params[:cancel].true?     # <----------------- Hide [Edit Comment]
  $('##{id}').replaceWith('#{ j render(partial: "comment", collection: [ @comment ]) }');

- else # <----------------------------------------- Show [Edit Comment] form.

  -# Disable onMouseOver for the list item.
  crm.highlight_off('#{id}');
  $('##{id}').html('#{ j render(partial: "edit", locals: { commentable: @comment.commentable }) }');
  $('##{dom_id(@comment, :text)}').focus();