diff --git a/fajita_example_2/src/canvas/proj_I_do_stuff/comp_stuff_doer/item_port.css b/fajita_example_2/src/canvas/proj_I_do_stuff/comp_stuff_doer/item_port.css new file mode 100644 index 0000000..54d2bb6 --- /dev/null +++ b/fajita_example_2/src/canvas/proj_I_do_stuff/comp_stuff_doer/item_port.css @@ -0,0 +1,3 @@ +.blue{ + background-color: green; +} \ No newline at end of file diff --git a/fajita_example_2/src/canvas/proj_I_do_stuff/comp_stuff_doer/item_port.html b/fajita_example_2/src/canvas/proj_I_do_stuff/comp_stuff_doer/item_port.html new file mode 100644 index 0000000..281c686 --- /dev/null +++ b/fajita_example_2/src/canvas/proj_I_do_stuff/comp_stuff_doer/item_port.html @@ -0,0 +1 @@ +
\ No newline at end of file diff --git a/fajita_example_2/src/canvas/proj_I_do_stuff/comp_stuff_doer/item_port.js b/fajita_example_2/src/canvas/proj_I_do_stuff/comp_stuff_doer/item_port.js new file mode 100644 index 0000000..bc562eb --- /dev/null +++ b/fajita_example_2/src/canvas/proj_I_do_stuff/comp_stuff_doer/item_port.js @@ -0,0 +1,3 @@ +$(function() { + $('div').addClass('blue'); +}); \ No newline at end of file diff --git a/fajita_example_2/src/canvas/proj_I_do_stuff/comp_stuff_doer/item_port.layout b/fajita_example_2/src/canvas/proj_I_do_stuff/comp_stuff_doer/item_port.layout new file mode 100644 index 0000000..de1e42e --- /dev/null +++ b/fajita_example_2/src/canvas/proj_I_do_stuff/comp_stuff_doer/item_port.layout @@ -0,0 +1,23 @@ +{ + "type": "template", + "include_html_markup": true, + "libs": [], + "styles": [ + { + "name": "port.css" + }, + { + "name": "quort.css" + } + ], + "templates": [ + { + "name": "port.html" + } + ], + "scripts": [ + { + "name": "port.js" + } + ] +} \ No newline at end of file diff --git a/fajita_example_2/src/canvas/proj_I_do_stuff/comp_stuff_doer/item_quort.css b/fajita_example_2/src/canvas/proj_I_do_stuff/comp_stuff_doer/item_quort.css new file mode 100644 index 0000000..f24a976 --- /dev/null +++ b/fajita_example_2/src/canvas/proj_I_do_stuff/comp_stuff_doer/item_quort.css @@ -0,0 +1,4 @@ +div { + height: 1000px; + width: 1000px; +} \ No newline at end of file