Switch to compose view when tapping 'mention' in dropdown on mobile
This commit is contained in:
5
app/assets/javascripts/components/is_mobile.jsx
Normal file
5
app/assets/javascripts/components/is_mobile.jsx
Normal file
@ -0,0 +1,5 @@
|
||||
const LAYOUT_BREAKPOINT = 1024;
|
||||
|
||||
export function isMobile(width) {
|
||||
return width <= LAYOUT_BREAKPOINT;
|
||||
};
|
Reference in New Issue
Block a user