Method: ApplicationHelper#comment_toggle_link
- Defined in:
- app/helpers/application_helper.rb
#comment_toggle_link(post) ⇒ Object
65 66 67 68 |
# File 'app/helpers/application_helper.rb', line 65 def comment_toggle_link(post) text = post.allows_comment? ? 'Disallow Comments' : 'Allow Comments' link_to(text, {:controller => 'post', :action => 'toggle_commenting', :id => post.id}, {'onclick' => "return toggleCommenting('#{post.id}')"}) end |