Skip to content

Commit

Permalink
Add name to response dictionary
Browse files Browse the repository at this point in the history
  • Loading branch information
guerler committed Feb 11, 2018
1 parent 48518d8 commit 76fac91
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,10 @@
$(function() {
var config = ${ h.dumps( config ) };
var app = bundleEntries.chart({
visualization_id : ${ h.dumps( visualization_id ) } || undefined,
dataset_id : config.dataset_id,
chart_dict : config.chart_dict
visualization_id : ${h.dumps(visualization_id)} || undefined,
visualization_name : ${h.dumps(visualization_name)},
dataset_id : config.dataset_id,
chart_dict : config.chart_dict
});
$('body').append(app.$el);
});
Expand Down

0 comments on commit 76fac91

Please sign in to comment.