commit/galaxy-central: jgoecks: Trackster: no need to parse floats because data providers now return floats rather than strings.
1 new changeset in galaxy-central: http://bitbucket.org/galaxy/galaxy-central/changeset/b1355f513577/ changeset: b1355f513577 user: jgoecks date: 2011-10-11 20:14:06 summary: Trackster: no need to parse floats because data providers now return floats rather than strings. affected #: 1 file (-1 bytes) --- a/static/scripts/trackster.js Tue Oct 11 14:05:08 2011 -0400 +++ b/static/scripts/trackster.js Tue Oct 11 14:14:06 2011 -0400 @@ -1638,7 +1638,7 @@ // No element to filter on. return true; } - var val = parseFloat(element[this.index]); + var val = element[this.index]; return (isNaN(val) || (val >= this.low && val <= this.high)); }, /** Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
participants (1)
-
Bitbucket