1 new commit in galaxy-central:
https://bitbucket.org/galaxy/galaxy-central/changeset/26850ea32e94/
changeset: 26850ea32e94
user: jgoecks
date: 2012-02-21 22:32:09
summary: Trackster bug fix for running tool outside of a group.
affected #: 2 files
diff -r 5579c3bcbb719f9810942a1bdc96c36d44b9c0b4 -r 26850ea32e94f7451ad5b808398ee873828308e4 static/scripts/trackster.js
--- a/static/scripts/trackster.js
+++ b/static/scripts/trackster.js
@@ -2050,7 +2050,7 @@
// already in group, add track to group.
if (current_track.container === view) {
// Create new group.
- var group = new DrawableGroup(this.name, this.track.view);
+ var group = new DrawableGroup(view, view, { name: this.name })
// Replace track with group.
var index = current_track.container.replace_drawable(current_track, group, false);
diff -r 5579c3bcbb719f9810942a1bdc96c36d44b9c0b4 -r 26850ea32e94f7451ad5b808398ee873828308e4 templates/tracks/browser.mako
--- a/templates/tracks/browser.mako
+++ b/templates/tracks/browser.mako
@@ -232,7 +232,7 @@
$("#add-tracks-icon").click( function() { add_tracks(); } );
$("#add-group-icon").click( function() {
- view.add_drawable( new DrawableGroup(view, view, { name: "New Group" }) );
+ view.add_drawable( new DrawableGroup(view, view, { name: "New Group" }) );
});
$("#save-icon").click( 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.