Clean the UI on first use of a pad (hide chat and reduce help)

This commit is contained in:
yflory
2019-03-28 11:41:59 +01:00
parent 7d4589bdb0
commit 723631c78c
3 changed files with 15 additions and 5 deletions

View File

@@ -306,6 +306,10 @@ define([], function () {
];
};
Util.isSmallScreen = function () {
return window.innerHeight < 800 || window.innerWidth < 800;
};
return Util;
});
}(self));