This commit is contained in:
Yuki 2015-06-09 08:51:58 +05:30
parent b24ee7fb0d
commit d2511dea42
1 changed files with 6 additions and 2 deletions

View File

@ -43,8 +43,12 @@ module ApplicationHelper
content_tag(:span, body, {title: tooltip_content, "data-toggle" => "tooltip", "data-placement" => placement} )
end
def time_tooltip(subject, placement = "bottom")
t = tooltip time_ago_in_words(subject.created_at), localize(subject.created_at), placement
def time_tooltip(subject, placement = "bottom") {
tooltip time_ago_in_words(subject.created_at), localize(subject.created_at), placement
}
def timestamp_tooltip(subject, placement = "bottom")
t = timestamp_tooltip(subject, placement)
unless subject.user.nil? or (subject.respond_to?(:author_is_anonymous) and subject.author_is_anonymous)
t = content_tag(:a, t, {href: show_user_question_path(subject.user.screen_name, subject.id)})
end