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:15:42 UTC

svn commit: r1868038 - /comdev/reporter.apache.org/trunk/site/wizard/js/wizard-beta.js

Author: humbedooh
Date: Sun Oct  6 04:15:41 2019
New Revision: 1868038

URL: http://svn.apache.org/viewvc?rev=1868038&view=rev
Log:
regen JS

Modified:
    comdev/reporter.apache.org/trunk/site/wizard/js/wizard-beta.js

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=1868038&r1=1868037&r2=1868038&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:15:41 2019
@@ -1380,8 +1380,8 @@ function pre_splash(state, json) {
 
 function splash(state, json, all) {
     pdata = json;
-    let html = document.body;
-    html.style.margin = '16px';
+    let html = document.getElementById('wrapper');
+    html.style.display = 'block';
     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'}});