1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/82379b8b2428/ Changeset: 82379b8b2428 User: guerler Date: 2014-06-19 17:08:26 Summary: Charts: Fix canvas id parsing Affected #: 2 files diff -r 6c3758595bc9b030dfbe1ba533add122bac86e49 -r 82379b8b2428fff1c1a0f4d32628566f2c7e581d config/plugins/visualizations/charts/static/charts/jqplot/line/wrapper.js --- a/config/plugins/visualizations/charts/static/charts/jqplot/line/wrapper.js +++ b/config/plugins/visualizations/charts/static/charts/jqplot/line/wrapper.js @@ -11,12 +11,13 @@ }, // render - draw : function(process_id, chart, request_dictionary) { + draw : function(process_id, chart, request_dictionary, canvas_list) { var plot = new Plot(this.app, this.options); plot.draw({ process_id : process_id, chart : chart, - request_dictionary : request_dictionary + request_dictionary : request_dictionary, + canvas_list : canvas_list }); } }); diff -r 6c3758595bc9b030dfbe1ba533add122bac86e49 -r 82379b8b2428fff1c1a0f4d32628566f2c7e581d config/plugins/visualizations/charts/static/charts/jqplot/scatter/wrapper.js --- a/config/plugins/visualizations/charts/static/charts/jqplot/scatter/wrapper.js +++ b/config/plugins/visualizations/charts/static/charts/jqplot/scatter/wrapper.js @@ -11,12 +11,13 @@ }, // render - draw : function(process_id, chart, request_dictionary) { + draw : function(process_id, chart, request_dictionary, canvas_list) { var plot = new Plot(this.app, this.options); plot.draw({ process_id : process_id, chart : chart, request_dictionary : request_dictionary, + canvas_list : canvas_list, makeConfig : function(groups, plot_config){ $.extend(true, plot_config, { seriesDefaults: { 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.