(js) Always show center list on small devices

This commit is contained in:
Francis Lachapelle
2017-04-11 12:00:00 -04:00
parent 08fcee67bd
commit 04f930dba5
@@ -17,7 +17,8 @@
$scope.activeUser = sgSettings.activeUser();
$scope.baseURL = sgSettings.baseURL();
$scope.leftIsClose = !$mdMedia(sgConstant['gt-md']);
$scope.centerIsClose = !!$window.centerIsClose;
// Don't hide the center list when on a small device
$scope.centerIsClose = !!$window.centerIsClose && !$scope.leftIsClose;
// Show current day in top bar
$scope.currentDay = window.currentDay;