diff --git a/README.md b/README.md index 8501e40..7cf5f5a 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,6 @@ # Mashup project +<<<<<<< HEAD This project is open-ended! * [AJAX demos](https://github.com/advanced-js/deck/tree/gh-pages/demos/ajax) @@ -53,3 +54,10 @@ Within this repository directory in your [virtual machine](https://github.com/st ```bash npm test -s ``` +======= +This web app takes an image URL and pulls Creative tools from Aviary to facilitate in-app photo editing. It also saves the newly edited image back to the website and can then be easily downloaded. + +API used: Aviary + +References: Aviary guide to using Aviary API +>>>>>>> 8b2f4f7182ee3413d13dbc17a42da76c8612a225 diff --git a/ajax_text.txt b/ajax_text.txt new file mode 100644 index 0000000..d1d81ed --- /dev/null +++ b/ajax_text.txt @@ -0,0 +1 @@ +
Image editing, courtesy of Aviary. Try editing snother image
diff --git a/index.html b/index.html index 6524157..035a903 100644 --- a/index.html +++ b/index.html @@ -1,8 +1,49 @@ - -
+
+
diff --git a/testAjax.js b/testAjax.js
index fb31d3e..48820fb 100644
--- a/testAjax.js
+++ b/testAjax.js
@@ -1,7 +1,6 @@
const fs = require('fs');
const globby = require('globby');
-
// get current file path, relative to directory that the script is run from
const currentFileRelative = () => {
// based off of http://stackoverflow.com/a/31856198/358804