This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository mum. See http://git.chorem.org/mum.git commit 214ba024e09aacd54ab2af10d4f29905c416550e Author: Alexis Guilbaud <guilbaud@codelutin.com> Date: Fri Jul 10 18:36:58 2015 +0200 corrected url when fullscreen if off --- static/js/controllers/dashboardCtrl.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/static/js/controllers/dashboardCtrl.js b/static/js/controllers/dashboardCtrl.js index 0916bab..ab4eb41 100644 --- a/static/js/controllers/dashboardCtrl.js +++ b/static/js/controllers/dashboardCtrl.js @@ -101,6 +101,10 @@ mumApp.controller('dashboardCtrl', function ($scope, $routeParams, $location, $r $scope.status_filter.push(status_tab[i]); } } + else if ( key == 'fullscreen'){ + var fullscreen_enabled = $location.search()[key] == 'true'; + $scope.fullscreen = fullscreen_enabled; + } else{ $scope[key] = $location.search()[key]; } -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.