1 new changeset in galaxy-central:
http://bitbucket.org/galaxy/galaxy-central/changeset/a02763fbe84a/ changeset: a02763fbe84a user: jgoecks date: 2011-09-03 00:00:16 summary: Trackster: properly remove tracks from view's track array. affected #: 1 file (3 bytes)
--- a/static/scripts/trackster.js Fri Sep 02 15:53:04 2011 -0400 +++ b/static/scripts/trackster.js Fri Sep 02 18:00:16 2011 -0400 @@ -896,7 +896,7 @@ */ remove_track: function(track) { this.has_changes = true; - delete this.tracks[this.tracks.indexOf(track)]; + this.tracks.splice(this.tracks.indexOf(track), 1); this.num_tracks -= 1; var view = this; track.container_div.fadeOut('slow', function() {
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.
galaxy-commits@lists.galaxyproject.org