aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/app.component.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-01-31 11:58:11 +0100
committerChocobozzz <me@florianbigard.com>2018-01-31 11:58:11 +0100
commitdd7789417181d202061ce5f693f1f72ab8d243c3 (patch)
tree48dd8f78a51ab3c62d818f17b3fa6bd298c61d05 /client/src/app/app.component.ts
parent1f788f2044928325e48c5d88ecbc72501873558e (diff)
downloadPeerTube-dd7789417181d202061ce5f693f1f72ab8d243c3.tar.gz
PeerTube-dd7789417181d202061ce5f693f1f72ab8d243c3.tar.zst
PeerTube-dd7789417181d202061ce5f693f1f72ab8d243c3.zip
Fix responsive with modale and menu displayed
Diffstat (limited to 'client/src/app/app.component.ts')
-rw-r--r--client/src/app/app.component.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/src/app/app.component.ts b/client/src/app/app.component.ts
index d2678096f..55c7bbf99 100644
--- a/client/src/app/app.component.ts
+++ b/client/src/app/app.component.ts
@@ -1,5 +1,5 @@
1import { Component, OnInit } from '@angular/core' 1import { Component, OnInit } from '@angular/core'
2import { NavigationEnd, Router } from '@angular/router' 2import { GuardsCheckStart, NavigationEnd, Router } from '@angular/router'
3import { AuthService, ServerService } from '@app/core' 3import { AuthService, ServerService } from '@app/core'
4import { isInMobileView } from '@app/shared/misc/utils' 4import { isInMobileView } from '@app/shared/misc/utils'
5 5
@@ -57,7 +57,7 @@ export class AppComponent implements OnInit {
57 this.router.events.subscribe( 57 this.router.events.subscribe(
58 e => { 58 e => {
59 // User clicked on a link in the menu, change the page 59 // User clicked on a link in the menu, change the page
60 if (e instanceof NavigationEnd && isInMobileView()) { 60 if (e instanceof GuardsCheckStart && isInMobileView()) {
61 this.isMenuDisplayed = false 61 this.isMenuDisplayed = false
62 } 62 }
63 } 63 }