commit/galaxy-central: 2 new changesets
2 new commits in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/b67e479016ac/ Changeset: b67e479016ac Branch: stable User: jgoecks Date: 2013-04-11 19:16:36 Summary: Do not escape backslashes in sweepster config. Affected #: 1 file diff -r d7f37a2fe69089c97c4d121287736c5c15f37795 -r b67e479016acfd21060ecd44a8415ccbb429d587 templates/webapps/galaxy/visualization/sweepster.mako --- a/templates/webapps/galaxy/visualization/sweepster.mako +++ b/templates/webapps/galaxy/visualization/sweepster.mako @@ -126,7 +126,7 @@ $(function() { // -- Viz set up. -- var viz = new sweepster.SweepsterVisualization( - ${ h.to_json_string( config ).replace('\\', '\\\\' )} + ${ h.to_json_string( config )} ); var viz_view = new sweepster.SweepsterVisualizationView({ model: viz }); viz_view.render(); https://bitbucket.org/galaxy/galaxy-central/commits/d5c4b1457c9e/ Changeset: d5c4b1457c9e User: jgoecks Date: 2013-04-11 19:17:30 Summary: Merge in stable branch. Affected #: 1 file diff -r 66c65d7c400c269512f27a0f33fa11b51392cd73 -r d5c4b1457c9e24bdbead55e0ac8fb4472aa340d6 templates/webapps/galaxy/visualization/sweepster.mako --- a/templates/webapps/galaxy/visualization/sweepster.mako +++ b/templates/webapps/galaxy/visualization/sweepster.mako @@ -126,7 +126,7 @@ $(function() { // -- Viz set up. -- var viz = new sweepster.SweepsterVisualization( - ${ h.to_json_string( config ).replace('\\', '\\\\' )} + ${ h.to_json_string( config )} ); var viz_view = new sweepster.SweepsterVisualizationView({ model: viz }); viz_view.render(); 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)
-
commits-noreply@bitbucket.org