commit f476c5e1d95c8de2c45ded4f7cf32a14f456f96e Author: Valentin Petzel Date: Fri Jun 29 10:52:59 2018 +0200 Enabling multiple text objects without breaks if no bullet is specified. diff --git a/dist/pptxgen.js b/dist/pptxgen.js index 8f20f61..c063fd1 100644 --- a/dist/pptxgen.js +++ b/dist/pptxgen.js @@ -3697,7 +3697,7 @@ var PptxGenJS = function(){ // Add paragraphProperties right after

before textrun(s) begin strSlideXml += '' + paragraphPropXml; } - else if ( idx > 0 && (typeof textObj.options.bullet !== 'undefined' || typeof textObj.options.align !== 'undefined') ) { + else if ( idx > 0 && (typeof textObj.options.break === 'undefined' || textObj.options.break) && (typeof textObj.options.bullet !== 'undefined' || typeof textObj.options.align !== 'undefined') ) { strSlideXml += '' + paragraphPropXml; }