Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | 2x 2x 2x 2x | import { Component } from '@angular/core';
import { runInAction } from 'mobx';
import { MobxAngularModule } from 'mobx-angular';
import { ConfigService } from '../../service/config.service';
import { Store } from '../../store/store';
@Component({
selector: 'app-login-popup',
templateUrl: './login-popup.component.html',
styleUrls: ['./login-popup.component.scss'],
host: { 'class': 'login-popup' },
imports: [MobxAngularModule]
})
export class LoginPopupComponentI {
constructor(
public store: Store,
public config: ConfigService,
) { }
clear() {
runInAction(() => this.store.account.authError = false);
}
doLogin() {
this.clear();
window.open(this.config.loginLink, "_blank");
}
}
|