This commit is contained in:
les
2020-01-30 14:51:34 +01:00
parent 00c35650d0
commit 53e7a31c97
2 changed files with 7 additions and 4 deletions

View File

@@ -341,8 +341,11 @@ export default {
.menu { .menu {
border-right: none; border-right: none;
border-left: 1px solid #e6e6e6;
background-color: transparent; background-color: transparent;
}
div.menu {
border-left: 1px solid #e6e6e6;
p { p {
margin-left: 10px; margin-left: 10px;
} }
@@ -416,7 +419,7 @@ export default {
@media only screen and (max-width: 768px) { @media only screen and (max-width: 768px) {
#eventDetail { #eventDetail {
.menu { .menu {
border: 0px; border: 0px !important;
} }
.title { .title {

View File

@@ -39,11 +39,11 @@ class Task {
class TaskManager { class TaskManager {
constructor () { constructor () {
this.interval = 60 * 100 this.interval = 60 * 1000
this.tasks = [] this.tasks = []
} }
start (interval = 60 * 100) { start (interval = 60 * 1000) {
this.interval = interval this.interval = interval
this.timeout = setTimeout(this.tick.bind(this), interval) this.timeout = setTimeout(this.tick.bind(this), interval)
} }