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/10/06 04:19:38 UTC

svn commit: r1868041 - in /comdev/reporter.apache.org/trunk/site/wizard: index.html js/source/generators.js js/wizard-beta.js

Author: humbedooh
Date: Sun Oct  6 04:19:38 2019
New Revision: 1868041

URL: http://svn.apache.org/viewvc?rev=1868041&view=rev
Log:
bleh, make an outer wrapper so we don't get caught in CSS nightmares

Modified:
    comdev/reporter.apache.org/trunk/site/wizard/index.html
    comdev/reporter.apache.org/trunk/site/wizard/js/source/generators.js
    comdev/reporter.apache.org/trunk/site/wizard/js/wizard-beta.js

Modified: comdev/reporter.apache.org/trunk/site/wizard/index.html
URL: http://svn.apache.org/viewvc/comdev/reporter.apache.org/trunk/site/wizard/index.html?rev=1868041&r1=1868040&r2=1868041&view=diff
==============================================================================
--- comdev/reporter.apache.org/trunk/site/wizard/index.html (original)
+++ comdev/reporter.apache.org/trunk/site/wizard/index.html Sun Oct  6 04:19:38 2019
@@ -18,6 +18,7 @@
 <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
 </head>
 <body onload="init_wizard(false);">
+ <div id="outer_wrapper">
  <div id="wizard_spinner" style="margin-top: 80px; height: 300px !important;">
   <h4 style="text-align: center;" id="loader_text">Loading base data..</h4>
   <div class="loader"></div>
@@ -47,6 +48,7 @@
       
     </div>
   </div>
+</div>
    
    <footer style="text-align: center; font-size: 0.8rem; clear: both;">
     Powered by the <a href='?'>ASF Board Report Wizard</a>. Copyright&copy; 2019 <a href='https://community.apache.org'>Apache Community Development</a>.<br/>

Modified: comdev/reporter.apache.org/trunk/site/wizard/js/source/generators.js
URL: http://svn.apache.org/viewvc/comdev/reporter.apache.org/trunk/site/wizard/js/source/generators.js?rev=1868041&r1=1868040&r2=1868041&view=diff
==============================================================================
--- comdev/reporter.apache.org/trunk/site/wizard/js/source/generators.js (original)
+++ comdev/reporter.apache.org/trunk/site/wizard/js/source/generators.js Sun Oct  6 04:19:38 2019
@@ -165,7 +165,7 @@ function pre_splash(state, json) {
 
 function splash(state, json, all) {
     pdata = json;
-    let html = document.getElementById('wizard_spinner');
+    let html = document.getElementById('outer_wrapper');
     let link = all ? 'All projects (<a href="javascript:splash({}, pdata, false);">show only your projects</a>):' : 'Your projects (<a href="javascript:splash({}, pdata, true);">show all projects</a>):'
     html.innerHTML = '<h3>%s</h3>'.format(link);
     let tbl = new HTML('table', {cellpadding: '8px', style: {margin: '20px'}});

Modified: comdev/reporter.apache.org/trunk/site/wizard/js/wizard-beta.js
URL: http://svn.apache.org/viewvc/comdev/reporter.apache.org/trunk/site/wizard/js/wizard-beta.js?rev=1868041&r1=1868040&r2=1868041&view=diff
==============================================================================
--- comdev/reporter.apache.org/trunk/site/wizard/js/wizard-beta.js (original)
+++ comdev/reporter.apache.org/trunk/site/wizard/js/wizard-beta.js Sun Oct  6 04:19:38 2019
@@ -1380,7 +1380,7 @@ function pre_splash(state, json) {
 
 function splash(state, json, all) {
     pdata = json;
-    let html = document.getElementById('wizard_spinner');
+    let html = document.getElementById('outer_wrapper');
     let link = all ? 'All projects (<a href="javascript:splash({}, pdata, false);">show only your projects</a>):' : 'Your projects (<a href="javascript:splash({}, pdata, true);">show all projects</a>):'
     html.innerHTML = '<h3>%s</h3>'.format(link);
     let tbl = new HTML('table', {cellpadding: '8px', style: {margin: '20px'}});