commit/galaxy-central: james_taylor: trackster: remove condition that sets mode to squish when less than four features in tile. mode selection must not change across tiles at the same level.
1 new changeset in galaxy-central: http://bitbucket.org/galaxy/galaxy-central/changeset/a77c1ea48451/ changeset: r5361:a77c1ea48451 user: james_taylor date: 2011-04-08 22:43:45 summary: trackster: remove condition that sets mode to squish when less than four features in tile. mode selection must not change across tiles at the same level. affected #: 1 file (72 bytes) --- a/static/scripts/trackster.js Fri Apr 08 14:14:58 2011 -0400 +++ b/static/scripts/trackster.js Fri Apr 08 16:43:45 2011 -0400 @@ -2153,8 +2153,9 @@ //if ( (result.message && result.message.match(/^Only the first [\d]+/)) || // (result.data && result.data.length > 2000) || var data = result.data; - if ( (data.length && data.length < 4) || - (this.view.high - this.view.low > MIN_SQUISH_VIEW_WIDTH) ) { + // if ( (data.length && data.length < 4) || + // (this.view.high - this.view.low > MIN_SQUISH_VIEW_WIDTH) ) { + if ( this.view.high - this.view.low > MIN_SQUISH_VIEW_WIDTH ) { mode = "Squish"; } else { mode = "Pack"; 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