Commit 021c6ac1 by Torkel Ödegaard

fixed panel menu while in fullscreen mode

parent 261e5ebb
......@@ -155,6 +155,9 @@ function (angular, $, _) {
if (panelLeftPos + menuLeftPos < 0) {
menuLeftPos = 0;
}
if ($scope.fullscreen) {
menuHeight = -(menuHeight/2);
}
$menu.css({'left': menuLeftPos, top: -menuHeight});
});
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment