ambition/reports/metric_fu/output/utils.js

10 lines
292 B
JavaScript
Raw Permalink Normal View History

2017-01-19 22:12:03 +08:00
function createGraphElement(elementType) {
var graphContainer = document.getElementById("graph_container");
if(graphContainer) {
var graphElement = document.createElement(elementType);
graphElement.setAttribute("id", "graph");
graphContainer.appendChild(graphElement);
}
}