diff options
Diffstat (limited to 'ui/lib/is-mobile-view.js')
-rw-r--r-- | ui/lib/is-mobile-view.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/lib/is-mobile-view.js b/ui/lib/is-mobile-view.js index 8a8591c1a..78fd6cb54 100644 --- a/ui/lib/is-mobile-view.js +++ b/ui/lib/is-mobile-view.js @@ -1,5 +1,5 @@ // Checks if viewport at invoke time fits mobile dimensions // isMobileView :: () => Bool -const isMobileView = () => window.matchMedia("screen and (max-width: 575px)").matches +const isMobileView = () => window.matchMedia('screen and (max-width: 575px)').matches -module.exports = isMobileView
\ No newline at end of file +module.exports = isMobileView |