-
Bug
-
Resolution: Fixed
-
Blocker
-
None
-
Jenkins 1.573
After upgrading Jenkins the Radiator view no longer works.
The only thing displayed on the page is:
- Pale Grey Jenkins Header bar.
- Small black bar with question mark icon at right hand side.
After a quick look at it:
Radiator view has a div called "dashboard" with the following style: height: 100%; width: 100%;
Tweaking this to height:800px for example will then show the content, although not full screen.
- is duplicated by
-
JENKINS-24104 Feedback views broken with Jenkins v1.572, v1.573, v1.574. Versions before are OK.
-
- Resolved
-
Same issue here. We patched the main.jelly file to get it working:
Location:
WEB-INF/classes/hudson/model/RadiatorView/main.jelly
From:
<div class="dashboard" style="${dashStyle} overflow: hidden; left: 0px; top: 0px; position: absolute; height: 100%; width: 100%; z-index: 65535">
To:
<div class="dashboard" style="${dashStyle} overflow: hidden; left: 0px; top: 0px; position: absolute; height: 95vh; width: 100vw; z-index: 65535">
Not perfect, but it works as a quick fix.
Regarding vh/vw: Modern browser will understand the new viewport values vh and vw.
see: http://dev.w3.org/csswg/css-values/#viewport-relative-lengths