tracks/app/helpers/stats_helper.rb
Katrina Owen 3f496db4b4 Split up the font size calculation
The font size is a view concern, but the relative size belongs in the
model layer.
2013-03-02 07:14:52 -05:00

7 lines
96 B
Ruby
Executable file

module StatsHelper
def font_size(cloud, tag)
9 + 2 * cloud.relative_size(tag)
end
end