commit/galaxy-central: jgoecks: Trackster: correctly handle navigation when only chrom name is used and name is the same as chrom currently being viewed.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/changeset/0b52c4f1bf46/ changeset: 0b52c4f1bf46 user: jgoecks date: 2012-04-19 17:49:59 summary: Trackster: correctly handle navigation when only chrom name is used and name is the same as chrom currently being viewed. affected #: 1 file diff -r bdea1a9aa7fc594785f69dfae3c9a63dbe510d6c -r 0b52c4f1bf4673ebbd762fe84d09c2edd1d798df static/scripts/trackster.js --- a/static/scripts/trackster.js +++ b/static/scripts/trackster.js @@ -1669,6 +1669,11 @@ view.low = Math.max(low, 0); view.high = Math.min(high, view.max_high); } + else { + // Low and high undefined, so view is whole chome. + view.low = 0; + view.high = view.max_high; + } view.reset_overview(); view.request_redraw(); } 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