mirror of
https://github.com/TracksApp/tracks.git
synced 2026-03-03 03:20:15 +01:00
fix #1150 by nog using ruby1.8.7 Array.count but Array.length for 1.8.6 compat
This commit is contained in:
parent
c0115eacd7
commit
539e18d87e
3 changed files with 5 additions and 5 deletions
|
|
@ -405,7 +405,7 @@ module TodosHelper
|
|||
html += step + "({ go: function() {\r\n"
|
||||
end
|
||||
end
|
||||
html += "}}) " * animation.count
|
||||
html += "}}) " * animation.length
|
||||
return html + ";"
|
||||
end
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue