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/03 03:18:07 UTC

svn commit: r1864294 - in /comdev/reporter.apache.org/trunk/site/wizard/js: source/generators.js source/unified.js wizard.js

Author: humbedooh
Date: Sat Aug  3 03:18:07 2019
New Revision: 1864294

URL: http://svn.apache.org/viewvc?rev=1864294&view=rev
Log:
sam sez this should be 80

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

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=1864294&r1=1864293&r2=1864294&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 Sat Aug  3 03:18:07 2019
@@ -247,7 +247,7 @@ function activity_tips(data) {
 }
 
 function reflow(txt, chars) {
-  chars = chars || 78;
+  chars = chars || 80;
   let words = txt.match(/([\S+?]+\s*)/mg);
   if (!words) return txt;
   let x = 0;

Modified: comdev/reporter.apache.org/trunk/site/wizard/js/source/unified.js
URL: http://svn.apache.org/viewvc/comdev/reporter.apache.org/trunk/site/wizard/js/source/unified.js?rev=1864294&r1=1864293&r2=1864294&view=diff
==============================================================================
--- comdev/reporter.apache.org/trunk/site/wizard/js/source/unified.js (original)
+++ comdev/reporter.apache.org/trunk/site/wizard/js/source/unified.js Sat Aug  3 03:18:07 2019
@@ -21,7 +21,6 @@ function UnifiedEditor_highlight_section
     // first destroy any original highlighting, as it's params changed!
     if (additional_text) {
         let color = 'green'
-        
         // Check for overflow, offer reflowing
         let reflower = document.getElementById('unified-reflow');
         if (reflower) {

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=1864294&r1=1864293&r2=1864294&view=diff
==============================================================================
--- comdev/reporter.apache.org/trunk/site/wizard/js/wizard.js (original)
+++ comdev/reporter.apache.org/trunk/site/wizard/js/wizard.js Sat Aug  3 03:18:07 2019
@@ -1416,7 +1416,7 @@ function activity_tips(data) {
 }
 
 function reflow(txt, chars) {
-  chars = chars || 78;
+  chars = chars || 80;
   let words = txt.match(/([\S+?]+\s*)/mg);
   if (!words) return txt;
   let x = 0;
@@ -1921,7 +1921,6 @@ function UnifiedEditor_highlight_section
     // first destroy any original highlighting, as it's params changed!
     if (additional_text) {
         let color = 'green'
-        
         // Check for overflow, offer reflowing
         let reflower = document.getElementById('unified-reflow');
         if (reflower) {