This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository pollen. See http://git.chorem.org/pollen.git commit cf021ef170e2995bc0883d486e0cafe8977b249a Author: Adrien Garandel <a.garandel@dralagen.fr> Date: Thu Aug 28 12:19:44 2014 +0200 minify sidebar by default --- pollen-ui-angular/src/main/webapp/js/controllers/pollCtrl.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pollen-ui-angular/src/main/webapp/js/controllers/pollCtrl.js b/pollen-ui-angular/src/main/webapp/js/controllers/pollCtrl.js index b7a80ee..7a7ffdc 100644 --- a/pollen-ui-angular/src/main/webapp/js/controllers/pollCtrl.js +++ b/pollen-ui-angular/src/main/webapp/js/controllers/pollCtrl.js @@ -64,7 +64,11 @@ angular.module('pollControllers', ['ngRoute', 'pollenServices', 'pascalprecht.tr $scope.session = SessionStorage.get(); $scope.globalVariables.toDay = new Date(); - $scope.globalVariables.minify = $scope.session.menuMinify; + $scope.globalVariables.minify = true; + + if (angular.isDefined($scope.session.menuMinify)) { + $scope.globalVariables.minify = $scope.session.menuMinify; + } var baseUrl = window.location.protocol+'//'+window.location.hostname; if (window.location.port != "") { -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.