Module HomeHelper
In: app/helpers/home_helper.rb

Methods

Public Instance methods

Set homepage @photo_columns to 1..3 based of homepage photo size

[Source]

    # File app/helpers/home_helper.rb, line 3
 3:   def photo_width_x_height(width, height)
 4:     @photo_width = width
 5:     @photo_height = height
 6:     case @photo_width
 7:     when 0..285
 8:       @photo_columns = 1
 9:     when 286..574
10:       @photo_columns = 2
11:     else
12:       @photo_columns = 3
13:     end
14:   end

[Validate]