summaryrefslogtreecommitdiffstats
path: root/theme/javascript/platform.js
blob: b6fb453b577a3a32a1dc5a8ed18c7c35f973eefd (plain)
1
2
3
4
5
module.exports = {
    isMobile: function() {
        return (document.width <= 600);
    }
};