commit/galaxy-central: jgoecks: Enable scrolling for tiles area in parameter space visualization.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/changeset/f3c8c73009c9/ changeset: f3c8c73009c9 user: jgoecks date: 2012-06-30 00:15:02 summary: Enable scrolling for tiles area in parameter space visualization. affected #: 2 files diff -r c0afbd9f63713787b4fa4d3d42a00c91cb7fb3b1 -r f3c8c73009c90025a068fc7eaf1641ebd1f3cc47 static/scripts/viz/paramamonster.js --- a/static/scripts/viz/paramamonster.js +++ b/static/scripts/viz/paramamonster.js @@ -695,7 +695,8 @@ }); tr.children().first().attr('colspan', 2); - $('#right').append(this.track_collection_container); + var tracks_div = $('<div>').addClass('tiles'); + $('#right').append( tracks_div.append(this.track_collection_container) ); self.model.get('tracks').each(function(track) { self.add_track(track); diff -r c0afbd9f63713787b4fa4d3d42a00c91cb7fb3b1 -r f3c8c73009c90025a068fc7eaf1641ebd1f3cc47 templates/visualization/paramamonster.mako --- a/templates/visualization/paramamonster.mako +++ b/templates/visualization/paramamonster.mako @@ -88,6 +88,14 @@ #right { width: 600px; } + .tiles { + overflow: auto; + position: absolute; + top: 25px; + bottom: 25px; + left: 0; + right: 0; + } </style></%def> 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