Added a skip options #865

This commit is contained in:
tidusjar 2017-06-24 22:09:57 +01:00
commit a66694b06a
2 changed files with 10 additions and 1 deletions

View file

@ -10,7 +10,11 @@
<a (click)="plex()" id="plexImg">
<img class="wizard-img" src="/images/plex-logo-reversed.png" />
</a>
</div>
<div class="row">
<button (click)="skip()" class="btn btn-primary-outline wizard-img" id="plexImg">
Skip
</button>
</div>
</div>

View file

@ -18,4 +18,9 @@ export class MediaServerComponent {
emby() {
this.router.navigate(['Wizard/Emby']);
}
skip()
{
this.router.navigate(['Wizard/CreateAdmin']);
}
}