Set the landing and login pages background refresh to 15 seconds rather than 10 and 7

pull/2696/head
TidusJar 6 years ago
parent ffc1641d77
commit 3377eb9838

@ -37,7 +37,7 @@ export class LandingPageComponent implements OnDestroy, OnInit {
});
this.timer = setInterval(() => {
this.cycleBackground();
}, 10000);
}, 15000);
const base = this.location.getBaseHrefFromDOM();
if (base.length > 1) {

@ -87,7 +87,7 @@ export class LoginComponent implements OnDestroy, OnInit {
});
this.timer = setInterval(() => {
this.cycleBackground();
}, 7000);
}, 15000);
const base = this.location.getBaseHrefFromDOM();
if (base.length > 1) {

Loading…
Cancel
Save