Skip to content

Commit

Permalink
bugfix: scatter plots of isoMDS and PCA were using broken link
Browse files Browse the repository at this point in the history
  • Loading branch information
wiwie committed Mar 18, 2014
1 parent 993a09c commit 2b1412d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ Hint: To zoom, click on the plot and drag.
// to the options and initiate the chart.
// This data is obtained by exporting a GA custom report to TSV.
// http://api.jquery.com/jQuery.get/
jQuery.get('/' + params[:repository] + '/run_results_parameter_optimizations_parameter_set_iterations/isoMDS/<%= params[:id] %>', null, function(tsv, state, xhr) {
jQuery.get('/<%= params[:repository] %>/run_results_parameter_optimizations_parameter_set_iterations/isoMDS/<%= params[:id] %>', null, function(tsv, state, xhr) {
var lines = [],
series = [];

Expand Down Expand Up @@ -243,7 +243,7 @@ Hint: To zoom, click on the plot and drag.
// to the options and initiate the chart.
// This data is obtained by exporting a GA custom report to TSV.
// http://api.jquery.com/jQuery.get/
jQuery.get('/' + params[:repository] + '/run_results_parameter_optimizations_parameter_set_iterations/pca/<%= params[:id] %>', null, function(tsv, state, xhr) {
jQuery.get('/<%= params[:repository] %>/run_results_parameter_optimizations_parameter_set_iterations/pca/<%= params[:id] %>', null, function(tsv, state, xhr) {
var lines = [],
series = [];

Expand Down

0 comments on commit 2b1412d

Please sign in to comment.