mirror of
https://github.com/bendtherules/opencharts.git
synced 2026-08-18 13:52:49 +00:00
27 lines
455 B
JavaScript
27 lines
455 B
JavaScript
addEventListener("load", load_em_all);
|
|
|
|
points = [
|
|
["0%", "20%"],
|
|
["20%", "60%"],
|
|
["45%", "45%"],
|
|
["55%", "30%"],
|
|
["85%", "80%"]
|
|
];
|
|
|
|
function load_em_all()
|
|
{
|
|
load_html_css_js("html", "line.html",
|
|
{
|
|
"points": points,
|
|
"point_radius": "10px"
|
|
});
|
|
load_html_css_js("css", "line.css",
|
|
{
|
|
"points": points,
|
|
"point_radius": "5px"
|
|
});
|
|
}
|
|
|
|
// load_em_all();
|
|
// console.log("Loaded stuffs");
|