0

GLPIPlanning.getHeight in planning.js

Gabriele Bertolucci yesterday at 1:51 a.m. 0

I'm using GLPI 11.0.4 as a Docker container.

In planning view I was not able to use the full available window height.

The only method I found was to manually edit line 93 of file planning.js inside the container, from 

height: options.height,

to

height: '100%',

and fully refresh the page in browser.

This value seems to have a default value set at line 55

height: GLPIPlanning.getHeight,


This behaviour is a bit annoying because I have to reproduce this modification at every containter recreation.

It should be nice if that value was parameterized somehow as many other parameters are already.