Show minimum word count

This commit is contained in:
Matt Barringer 2013-02-06 19:56:02 +01:00
parent 55039e4b31
commit 9b1704fad6
2 changed files with 7 additions and 1 deletions

View file

@ -4,6 +4,7 @@ module ProposalHelper
conference.event_types.map do |t|
str += "if ($('select option:selected').text() == '#{t.title}') {\n"
str += "str = '#{t.maximum_abstract_length}';\n"
str += "min_str = '#{t.minimum_abstract_length}';\n"
str += "maxcount = #{t.maximum_abstract_length};\n"
str += "}\n\n"
end.join("\n")