diff options
author | Chocobozzz <me@florianbigard.com> | 2018-02-09 09:30:37 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-02-09 09:30:37 +0100 |
commit | 3290f37c76784f1b96cefb5d389e48db56033b0a (patch) | |
tree | f383d1ea4ca666ac976c80c9a1277edd2ef0ef7e /client/src/app/shared/misc | |
parent | 7193ad1044d2dfad8f929f0951f9a3601c056f67 (diff) | |
download | PeerTube-3290f37c76784f1b96cefb5d389e48db56033b0a.tar.gz PeerTube-3290f37c76784f1b96cefb5d389e48db56033b0a.tar.zst PeerTube-3290f37c76784f1b96cefb5d389e48db56033b0a.zip |
Video previews take all the width on mobile
Diffstat (limited to 'client/src/app/shared/misc')
-rw-r--r-- | client/src/app/shared/misc/utils.ts | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/client/src/app/shared/misc/utils.ts b/client/src/app/shared/misc/utils.ts index 0e6e6b366..6620ac973 100644 --- a/client/src/app/shared/misc/utils.ts +++ b/client/src/app/shared/misc/utils.ts | |||
@@ -55,15 +55,20 @@ function dateToHuman (date: string) { | |||
55 | return datePipe.transform(date, 'medium') | 55 | return datePipe.transform(date, 'medium') |
56 | } | 56 | } |
57 | 57 | ||
58 | function isInMobileView () { | 58 | function isInSmallView () { |
59 | return window.innerWidth < 600 | 59 | return window.innerWidth < 600 |
60 | } | 60 | } |
61 | 61 | ||
62 | function isInMobileView () { | ||
63 | return window.innerWidth < 500 | ||
64 | } | ||
65 | |||
62 | export { | 66 | export { |
63 | viewportHeight, | 67 | viewportHeight, |
64 | getParameterByName, | 68 | getParameterByName, |
65 | populateAsyncUserVideoChannels, | 69 | populateAsyncUserVideoChannels, |
66 | getAbsoluteAPIUrl, | 70 | getAbsoluteAPIUrl, |
67 | dateToHuman, | 71 | dateToHuman, |
72 | isInSmallView, | ||
68 | isInMobileView | 73 | isInMobileView |
69 | } | 74 | } |