diff --git a/NUXT/components/videoPlayer.vue b/NUXT/components/videoPlayer.vue new file mode 100644 index 0000000..6c1f165 --- /dev/null +++ b/NUXT/components/videoPlayer.vue @@ -0,0 +1,38 @@ + + + diff --git a/NUXT/layouts/default.vue b/NUXT/layouts/default.vue index 4b3ebd9..34e4a49 100644 --- a/NUXT/layouts/default.vue +++ b/NUXT/layouts/default.vue @@ -25,7 +25,7 @@ > -
+
@@ -165,6 +165,10 @@ export default { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; } +*:focus::before { + opacity: 0 !important; +} + .scroll-y { overflow-y: scroll !important; /* has to be scroll, not auto */ -webkit-overflow-scrolling: touch !important; diff --git a/NUXT/pages/mods/about.vue b/NUXT/pages/mods/about.vue index c3e29c6..30d0ad7 100644 --- a/NUXT/pages/mods/about.vue +++ b/NUXT/pages/mods/about.vue @@ -28,7 +28,7 @@
OS: {{ deviceInfo.operatingSystem }} ({{ deviceInfo.osVersion }})
Model: {{ deviceInfo.model }}
Manufacturer: {{ deviceInfo.manufacturer }}
-
Virtual Device: {{ deviceInfo.isVirtual ? 'yes' : 'no' }}
+
Virtual Device: {{ deviceInfo.isVirtual ? "yes" : "no" }}
diff --git a/NUXT/pages/search.vue b/NUXT/pages/search.vue index 1e89bfd..ec410ea 100644 --- a/NUXT/pages/search.vue +++ b/NUXT/pages/search.vue @@ -34,17 +34,6 @@ export default { renderer: [], }; }, - mounted() { - this.getSearch(); - }, - methods: { - getSearch() { - const searchQuestion = this.$route.query.q; - this.$youtube.search(searchQuestion).then((response) => { - this.renderer = response; - }); - }, - }, watch: { // Watches for new searches while the current search page is active. $route: { @@ -56,5 +45,16 @@ export default { }, }, }, + mounted() { + this.getSearch(); + }, + methods: { + getSearch() { + const searchQuestion = this.$route.query.q; + this.$youtube.search(searchQuestion).then((response) => { + this.renderer = response; + }); + }, + }, }; diff --git a/NUXT/pages/watch.vue b/NUXT/pages/watch.vue index 4fa6d7e..0e463e3 100644 --- a/NUXT/pages/watch.vue +++ b/NUXT/pages/watch.vue @@ -1,14 +1,6 @@