From 92f1874e4192bc2595c55ea7616c640359cd0a0d Mon Sep 17 00:00:00 2001 From: Isaac Bythewood Date: Sat, 19 Jan 2019 18:07:28 -0500 Subject: [PATCH] Improve selector globally --- client/static_src/components/tracker.vue | 120 ++++++----------------- 1 file changed, 30 insertions(+), 90 deletions(-) diff --git a/client/static_src/components/tracker.vue b/client/static_src/components/tracker.vue index 58bf1b9f..c34307ec 100644 --- a/client/static_src/components/tracker.vue +++ b/client/static_src/components/tracker.vue @@ -47,91 +47,36 @@ required>
-
-
- - - -
-
- -
-
-
- -
-
- -
-
- -
-
- -
-
- + + +
@@ -165,8 +110,6 @@ export default { running: false, total: 0, seconds: '0', - - showExtras: false, }; }, computed: { @@ -220,9 +163,6 @@ export default { document.title = 'Application — ' + timestrapConfig.SITE.NAME; } }, - toggleExtras() { - this.showExtras = !this.showExtras; - }, }, };