]> git.openstreetmap.org Git - rails.git/blobdiff - app/helpers/note_helper.rb
Truncate if necessary and set dir=auto for note usernames
[rails.git] / app / helpers / note_helper.rb
index 4e7e37bfb931063d0920b1975f6eb979cf36ad2d..2e9850aef060f2b6549de5cdecac599d95fbdd9a 100644 (file)
@@ -18,12 +18,8 @@ module NoteHelper
     elsif author.status == "deleted"
       t("users.no_such_user.deleted")
     else
-      link_to h(author.display_name), link_options.merge(:controller => "/users", :action => "show", :display_name => author.display_name)
+      link_to h(author.display_name), link_options.merge(:controller => "/users", :action => "show", :display_name => author.display_name),
+              :class => "mw-100 d-inline-block align-bottom text-truncate text-wrap", :dir => "auto"
     end
   end
-
-  def disappear_in(note)
-    date = note.freshly_closed_until
-    tag.span(distance_of_time_in_words(date, Time.now.utc), :title => l(date, :format => :friendly))
-  end
 end