Module PhotosHelper
In: app/helpers/photos_helper.rb

Methods

shorten  

Public Instance methods

[Source]

   # File app/helpers/photos_helper.rb, line 2
2:   def shorten(title)
3:     title.length > 65 ? "#{title[0..64].sub(/[^\w]\w+$/, '')} ..." : title
4:   end

[Validate]