diff --git a/src/App.vue b/src/App.vue
index 26b8f1d9..6a7a658b 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -3,50 +3,8 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
@@ -55,105 +13,29 @@
\ No newline at end of file
diff --git a/src/components/tabIcon.vue b/src/components/genericComponents/tabIcon.vue
similarity index 81%
rename from src/components/tabIcon.vue
rename to src/components/genericComponents/tabIcon.vue
index 2d892a16..40e28478 100644
--- a/src/components/tabIcon.vue
+++ b/src/components/genericComponents/tabIcon.vue
@@ -16,8 +16,7 @@ export default {
props: {
id: String,
currentTab: String,
- requireConnection: Boolean,
- name: String
+ requireConnection: Boolean
},
methods: {
@@ -28,7 +27,8 @@ export default {
computed: {
tooltipOptions: function () {
- return `pos: right; title: ${this.name}; delay: 500`
+ var title = this.id.charAt(0).toUpperCase() + this.id.slice(1);
+ return `pos: right; title: ${title}; delay: 500`
},
classObject: function () {
@@ -45,7 +45,7 @@ export default {
diff --git a/src/components/panelLeft.vue b/src/components/panelLeft.vue
new file mode 100644
index 00000000..9336cddd
--- /dev/null
+++ b/src/components/panelLeft.vue
@@ -0,0 +1,111 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/components/panelRight.vue b/src/components/panelRight.vue
new file mode 100644
index 00000000..f3db8871
--- /dev/null
+++ b/src/components/panelRight.vue
@@ -0,0 +1,66 @@
+
+
+
+
+
+
+
+
diff --git a/src/components/paneDisplayComponents/galleryComponents/captureCard.vue b/src/components/viewComponents/galleryComponents/captureCard.vue
similarity index 100%
rename from src/components/paneDisplayComponents/galleryComponents/captureCard.vue
rename to src/components/viewComponents/galleryComponents/captureCard.vue
diff --git a/src/components/paneDisplayComponents/galleryComponents/scanCard.vue b/src/components/viewComponents/galleryComponents/scanCard.vue
similarity index 100%
rename from src/components/paneDisplayComponents/galleryComponents/scanCard.vue
rename to src/components/viewComponents/galleryComponents/scanCard.vue
diff --git a/src/components/paneDisplayComponents/galleryDisplay.vue b/src/components/viewComponents/galleryDisplay.vue
similarity index 100%
rename from src/components/paneDisplayComponents/galleryDisplay.vue
rename to src/components/viewComponents/galleryDisplay.vue