Workflow change

This commit is contained in:
bendtherules
2014-03-28 09:42:33 -07:00
parent e7f894ad9b
commit 24d1afffbd
9 changed files with 396 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
// 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");