1 new changeset in galaxy-central: http://bitbucket.org/galaxy/galaxy-central/changeset/cafb70f10379/ changeset: cafb70f10379 user: jgoecks date: 2011-09-12 20:51:26 summary: Fix trackster bug in determining tile bounds and in documentation. affected #: 1 file (0 bytes) --- a/static/scripts/trackster.js Fri Sep 09 16:05:52 2011 -0400 +++ b/static/scripts/trackster.js Mon Sep 12 14:51:26 2011 -0400 @@ -2495,7 +2495,7 @@ var tile_low = tile_index * DENSITY * resolution, tile_length = DENSITY * resolution, // Tile high cannot be larger than view.max_high, which the chromosome length. - tile_high = (tile_low + tile_length <= this.view.max ? tile_low + tile_length : this.view.max_high); + tile_high = (tile_low + tile_length <= this.view.max_high ? tile_low + tile_length : this.view.max_high); return [tile_low, tile_high]; }, /** @@ -2998,7 +2998,7 @@ * @param mode mode to draw in * @param resolution view resolution * @param tile_index index of tile to be drawn - * @param w_scale base pairs per pixel + * @param w_scale pixels per base * @param ref_seq reference sequence data */ draw_tile: function(result, mode, resolution, tile_index, w_scale, ref_seq) { 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.