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

This commit is contained in:
TidusJar 2018-12-17 13:52:52 +00:00
commit 3377eb9838
2 changed files with 2 additions and 2 deletions

View file

@ -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) {

View file

@ -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) {