Files
opencharts/line/loader_line.js
T
2014-03-28 09:42:33 -07:00

31 lines
651 B
JavaScript

// document.addEventListener("load", load_em_all);
function load_em_all()
{
load_html_css_js("html", "./line/line.html",
{
"points": [
["10%", "10%"],
["30%", "30%"],
["60%", "60%"],
["80%", "80%"],
["50%", "50%"]
],
"point_radius": "10px"
});
load_html_css_js("css", "./line/line.css",
{
"points": [
["10%", "10%"],
["30%", "30%"],
["60%", "60%"],
["80%", "80%"],
["50%", "50%"]
],
"point_radius": "10px"
});
}
load_em_all();
console.log("Loaded stuffs");