diff options
author | Chocobozzz <me@florianbigard.com> | 2019-08-22 16:13:26 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2019-08-22 16:13:26 +0200 |
commit | 4334445d043252661e62cf97f76b67a2c43e3750 (patch) | |
tree | 2d075ae7bc81001fd91e9ebc2caace3e89c258b2 | |
parent | f9e387ed05d79d3f88f95056720fb244d04805d2 (diff) | |
download | PeerTube-4334445d043252661e62cf97f76b67a2c43e3750.tar.gz PeerTube-4334445d043252661e62cf97f76b67a2c43e3750.tar.zst PeerTube-4334445d043252661e62cf97f76b67a2c43e3750.zip |
Dismiss modals on pop state
-rw-r--r-- | client/src/app/app.component.ts | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/client/src/app/app.component.ts b/client/src/app/app.component.ts index 50c5f5b9b..065bdcaa4 100644 --- a/client/src/app/app.component.ts +++ b/client/src/app/app.component.ts | |||
@@ -8,9 +8,10 @@ import { debounceTime, filter, map, pairwise, skip } from 'rxjs/operators' | |||
8 | import { Hotkey, HotkeysService } from 'angular2-hotkeys' | 8 | import { Hotkey, HotkeysService } from 'angular2-hotkeys' |
9 | import { I18n } from '@ngx-translate/i18n-polyfill' | 9 | import { I18n } from '@ngx-translate/i18n-polyfill' |
10 | import { fromEvent } from 'rxjs' | 10 | import { fromEvent } from 'rxjs' |
11 | import { ViewportScroller } from '@angular/common' | 11 | import { PlatformLocation, ViewportScroller } from '@angular/common' |
12 | import { PluginService } from '@app/core/plugins/plugin.service' | 12 | import { PluginService } from '@app/core/plugins/plugin.service' |
13 | import { HooksService } from '@app/core/plugins/hooks.service' | 13 | import { HooksService } from '@app/core/plugins/hooks.service' |
14 | import { NgbModal } from '@ng-bootstrap/ng-bootstrap' | ||
14 | 15 | ||
15 | @Component({ | 16 | @Component({ |
16 | selector: 'my-app', | 17 | selector: 'my-app', |
@@ -35,7 +36,9 @@ export class AppComponent implements OnInit { | |||
35 | private screenService: ScreenService, | 36 | private screenService: ScreenService, |
36 | private hotkeysService: HotkeysService, | 37 | private hotkeysService: HotkeysService, |
37 | private themeService: ThemeService, | 38 | private themeService: ThemeService, |
38 | private hooks: HooksService | 39 | private hooks: HooksService, |
40 | private location: PlatformLocation, | ||
41 | private modalService: NgbModal | ||
39 | ) { } | 42 | ) { } |
40 | 43 | ||
41 | get serverVersion () { | 44 | get serverVersion () { |
@@ -90,6 +93,8 @@ export class AppComponent implements OnInit { | |||
90 | fromEvent(window, 'resize') | 93 | fromEvent(window, 'resize') |
91 | .pipe(debounceTime(200)) | 94 | .pipe(debounceTime(200)) |
92 | .subscribe(() => this.onResize()) | 95 | .subscribe(() => this.onResize()) |
96 | |||
97 | this.location.onPopState(() => this.modalService.dismissAll()) | ||
93 | } | 98 | } |
94 | 99 | ||
95 | isUserLoggedIn () { | 100 | isUserLoggedIn () { |