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/02 13:35:52 UTC

svn commit: r1864226 - in /comdev/reporter.apache.org/trunk/site/wizard/js: source/drafts.js wizard.js

Author: humbedooh
Date: Fri Aug  2 13:35:52 2019
New Revision: 1864226

URL: http://svn.apache.org/viewvc?rev=1864226&view=rev
Log:
more bug fixing

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

Modified: comdev/reporter.apache.org/trunk/site/wizard/js/source/drafts.js
URL: http://svn.apache.org/viewvc/comdev/reporter.apache.org/trunk/site/wizard/js/source/drafts.js?rev=1864226&r1=1864225&r2=1864226&view=diff
==============================================================================
--- comdev/reporter.apache.org/trunk/site/wizard/js/source/drafts.js (original)
+++ comdev/reporter.apache.org/trunk/site/wizard/js/source/drafts.js Fri Aug  2 13:35:52 2019
@@ -81,7 +81,7 @@ function show_draft_list(state, json) {
     }
     txt += "</ul></small>"
   }
-  if (json && current_step == 0) {
+  if (json && state.stepper.step == 0) {
     let tip = document.getElementById('unified-helper');
     tip.innerHTML += txt;
   } else {

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=1864226&r1=1864225&r2=1864226&view=diff
==============================================================================
--- comdev/reporter.apache.org/trunk/site/wizard/js/wizard.js (original)
+++ comdev/reporter.apache.org/trunk/site/wizard/js/wizard.js Fri Aug  2 13:35:52 2019
@@ -1096,7 +1096,7 @@ function show_draft_list(state, json) {
     }
     txt += "</ul></small>"
   }
-  if (json && current_step == 0) {
+  if (json && state.stepper.step == 0) {
     let tip = document.getElementById('unified-helper');
     tip.innerHTML += txt;
   } else {