21 lines
790 B
Ruby
21 lines
790 B
Ruby
# Copyright (c) 2010, Diaspora Inc. This file is
|
|
# licensed under the Affero General Public License version 3 or later. See
|
|
# the COPYRIGHT file.
|
|
|
|
module CommentsHelper
|
|
GSUB_THIS = "FIUSDHVIUSHDVIUBAIUHAPOIUXJM"
|
|
def comment_toggle(count, commenting_disabled=false)
|
|
if count <= 3
|
|
str = link_to "#{t('stream_helper.hide_comments')}", '#', :class => "show_post_comments"
|
|
else
|
|
str = link_to "#{t('stream_helper.show_more_comments', :number => count-3)}", '#', :class => "show_post_comments"
|
|
end
|
|
str
|
|
end
|
|
|
|
def new_comment_form(post_id, current_user)
|
|
@form ||= controller.render_to_string(
|
|
:partial => 'comments/new_comment', :locals => {:post_id => GSUB_THIS, :current_user => current_user})
|
|
@form.gsub(GSUB_THIS, post_id.to_s)
|
|
end
|
|
end
|