diff --git a/html/deviceListing.html b/html/deviceListing.html
deleted file mode 100644
index d224a68..0000000
--- a/html/deviceListing.html
+++ /dev/null
@@ -1,39 +0,0 @@
-
-
-
-
-
-
-
-
-
- Name |
- Device Type |
- Version/OS |
- Location |
-
-
- Abernathy |
- iPhone |
- Zebra |
- CT |
-
-
- Dolores |
- Nexus |
- Jaguar |
- MASS |
-
-
-
-
-
\ No newline at end of file
diff --git a/html/deviceListing.js b/html/deviceListing.js
deleted file mode 100644
index 4cb042b..0000000
--- a/html/deviceListing.js
+++ /dev/null
@@ -1,36 +0,0 @@
-var tableHtml = processDeviceData(harvestDevices);
-alert(tableHtml);
-document.getElementById("list").innerHTML = tableHtml;
-
-function processDeviceData(devices) {
- // returns html table entries using data from harvestDevices()
- // this is to be inserted into the table with the data-table attribut 'list', which can be found in deviceListing.html
- var html="";
- for (var i = 0; i";
- for (var j = 0; j < devices[i].length; j++) {
- // if(i==0) html+="";
- // else
- html+=" | ";
- html+=devices[i][j];
- // if(i==0) html+="";
- // else
- html+=" | "
- console.log(html);
- }
- html+="";
- }
- return html;
-}
-function harvestDevices() {
- // returns array of arrays (currently dummy data)
- // each array corresponds to a line item in device listing table
- var array = [
- ["Name","Device Type","Version/OS","Location"],
- ["Name1","Type1","Version1","Location1"],
- ["Name2","Type2","Version2","Location2"],
- ["Name3","Type3","Version3","Location3"],
- ["Name4","Type4","Version4","Location4"]
- ];
- return array;
-}
\ No newline at end of file