mirror of https://github.com/mastodon/mastodon
Switch to compose view when tapping 'mention' in dropdown on mobile
parent
69643338f6
commit
d64c454cfe
@ -0,0 +1,5 @@
|
||||
const LAYOUT_BREAKPOINT = 1024;
|
||||
|
||||
export function isMobile(width) {
|
||||
return width <= LAYOUT_BREAKPOINT;
|
||||
};
|
Loading…
Reference in New Issue