mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-16 07:35:16 +00:00
6 lines
95 B
JavaScript
6 lines
95 B
JavaScript
module.exports = {
|
|
isMobile: function() {
|
|
return (document.width <= 600);
|
|
}
|
|
};
|