You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@community.apache.org by hu...@apache.org on 2019/08/06 19:24:42 UTC

svn commit: r1864556 - in /comdev/reporter.apache.org/trunk/site/wizard: css/wizard.css js/source/statistics.js js/wizard.js

Author: humbedooh
Date: Tue Aug  6 19:24:42 2019
New Revision: 1864556

URL: http://svn.apache.org/viewvc?rev=1864556&view=rev
Log:
fix height issues with editor vs stats page

Modified:
    comdev/reporter.apache.org/trunk/site/wizard/css/wizard.css
    comdev/reporter.apache.org/trunk/site/wizard/js/source/statistics.js
    comdev/reporter.apache.org/trunk/site/wizard/js/wizard.js

Modified: comdev/reporter.apache.org/trunk/site/wizard/css/wizard.css
URL: http://svn.apache.org/viewvc/comdev/reporter.apache.org/trunk/site/wizard/css/wizard.css?rev=1864556&r1=1864555&r2=1864556&view=diff
==============================================================================
--- comdev/reporter.apache.org/trunk/site/wizard/css/wizard.css (original)
+++ comdev/reporter.apache.org/trunk/site/wizard/css/wizard.css Tue Aug  6 19:24:42 2019
@@ -1,4 +1,4 @@
-html, body { min-height: 100%; width: 100%; margin: 0;}
+html, body { min-height: 100%; height: 100%; width: 100%; margin: 0;}
 
 body {
  font-family: SelawikRegular, sans-serif;

Modified: comdev/reporter.apache.org/trunk/site/wizard/js/source/statistics.js
URL: http://svn.apache.org/viewvc/comdev/reporter.apache.org/trunk/site/wizard/js/source/statistics.js?rev=1864556&r1=1864555&r2=1864556&view=diff
==============================================================================
--- comdev/reporter.apache.org/trunk/site/wizard/js/source/statistics.js (original)
+++ comdev/reporter.apache.org/trunk/site/wizard/js/source/statistics.js Tue Aug  6 19:24:42 2019
@@ -2,6 +2,7 @@
 function StatisticsPage(layout, pdata) {
     let wrapper = document.getElementById('wrapper');
     wrapper.style.padding = '8px';
+    wrapper.style.height = 'auto';
     wrapper.innerHTML = "";
     for (var i = 0; i < layout.length; i++) {
         let step = layout[i];

Modified: comdev/reporter.apache.org/trunk/site/wizard/js/wizard.js
URL: http://svn.apache.org/viewvc/comdev/reporter.apache.org/trunk/site/wizard/js/wizard.js?rev=1864556&r1=1864555&r2=1864556&view=diff
==============================================================================
--- comdev/reporter.apache.org/trunk/site/wizard/js/wizard.js (original)
+++ comdev/reporter.apache.org/trunk/site/wizard/js/wizard.js Tue Aug  6 19:24:42 2019
@@ -2985,6 +2985,7 @@ function statistics_releases(data) {
 function StatisticsPage(layout, pdata) {
     let wrapper = document.getElementById('wrapper');
     wrapper.style.padding = '8px';
+    wrapper.style.height = 'auto';
     wrapper.innerHTML = "";
     for (var i = 0; i < layout.length; i++) {
         let step = layout[i];