commit/galaxy-central: jgoecks: Trackster: do not subset data with no detail.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/changeset/8d94b528fb0f/ changeset: 8d94b528fb0f user: jgoecks date: 2012-04-19 18:46:31 summary: Trackster: do not subset data with no detail. affected #: 1 file diff -r c32b71dcfc84965dc6dacd80495b0b7bac3089cc -r 8d94b528fb0fca25d6f65eba6e507d094854ed57 static/scripts/trackster.js --- a/static/scripts/trackster.js +++ b/static/scripts/trackster.js @@ -4956,8 +4956,8 @@ * Returns true if data can be subsetted. */ can_subset: function(data) { - // Do not subset summary tree data or entries with a message. - if (data.dataset_type === "summary_tree" || data.message) { + // Do not subset summary tree data, entries with a message, or data with no detail. + if (data.dataset_type === "summary_tree" || data.message || data.extra_info === "no_detail") { return false; } 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