Skip to content
Snippets Groups Projects
Commit 26b0ba26 authored by Georgi's avatar Georgi
Browse files

removed a line from the bubble-script.blade that caused a null value to be...

removed a line from the bubble-script.blade that caused a null value to be given to the container and causing an error
parent 2e870081
No related branches found
No related tags found
No related merge requests found
Pipeline #7705 passed
function drawBubbleGraph(label, container) {
var url = "/app/ranking/" + label + "/json";
var container = document.getElementById(container);
d3.select(container).select("svg").remove();
var svg = d3.select(container).append("svg");
d3.json(url).then(data => {
data = data.slice(0, 100);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment