X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fshared%2Fmisc%2Futils.ts;h=6620ac9737f5fe5678c125d32cd6d36d26b4811f;hb=3290f37c76784f1b96cefb5d389e48db56033b0a;hp=0e6e6b3661eb6fbe4bffcf7989bc98fd374a51e9;hpb=61bbc7277501692d1520a421dff5af5d38ba6cf4;p=github%2FChocobozzz%2FPeerTube.git 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) { return datePipe.transform(date, 'medium') } -function isInMobileView () { +function isInSmallView () { return window.innerWidth < 600 } +function isInMobileView () { + return window.innerWidth < 500 +} + export { viewportHeight, getParameterByName, populateAsyncUserVideoChannels, getAbsoluteAPIUrl, dateToHuman, + isInSmallView, isInMobileView }