From 7e3f59bb292aca9cb75ca3f825aca4c6392d43a2 Mon Sep 17 00:00:00 2001 From: Kevin Marsh Date: Mon, 17 Jun 2019 14:52:14 -0400 Subject: [PATCH] Add an I do stuff fajita to do stuff we can't currently do --- .../comp_stuff_doer/item_port.css | 3 +++ .../comp_stuff_doer/item_port.html | 1 + .../comp_stuff_doer/item_port.js | 3 +++ .../comp_stuff_doer/item_port.layout | 23 +++++++++++++++++++ .../comp_stuff_doer/item_quort.css | 4 ++++ 5 files changed, 34 insertions(+) create mode 100644 fajita_example_2/src/canvas/proj_I_do_stuff/comp_stuff_doer/item_port.css create mode 100644 fajita_example_2/src/canvas/proj_I_do_stuff/comp_stuff_doer/item_port.html create mode 100644 fajita_example_2/src/canvas/proj_I_do_stuff/comp_stuff_doer/item_port.js create mode 100644 fajita_example_2/src/canvas/proj_I_do_stuff/comp_stuff_doer/item_port.layout create mode 100644 fajita_example_2/src/canvas/proj_I_do_stuff/comp_stuff_doer/item_quort.css 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