commit/galaxy-central: kanwei: trackster: Fix infinite data query loop when chrom is null or 'None'
1 new changeset in galaxy-central: http://bitbucket.org/galaxy/galaxy-central/changeset/538ca7438a8a/ changeset: r5000:538ca7438a8a user: kanwei date: 2011-02-05 03:02:23 summary: trackster: Fix infinite data query loop when chrom is null or 'None' affected #: 1 file (203 bytes) --- a/static/scripts/trackster.js Fri Feb 04 16:16:00 2011 -0500 +++ b/static/scripts/trackster.js Fri Feb 04 21:02:23 2011 -0500 @@ -466,6 +466,12 @@ }, change_chrom: function(chrom, low, high) { + + // Don't do anything if chrom is "None" (hackish but some browsers already have this set), or null/blank + if (!chrom || chrom === "None") { + return; + } + var view = this; // 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