fix #1150 by nog using ruby1.8.7 Array.count but Array.length for 1.8.6 compat

This commit is contained in:
Reinier Balt 2011-04-19 13:42:05 +02:00
parent c0115eacd7
commit 539e18d87e
3 changed files with 5 additions and 5 deletions

View file

@ -405,7 +405,7 @@ module TodosHelper
html += step + "({ go: function() {\r\n"
end
end
html += "}}) " * animation.count
html += "}}) " * animation.length
return html + ";"
end