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

View File

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