Skip to content

Commit

Permalink
Fixed Issue gitbrent#596
Browse files Browse the repository at this point in the history
  • Loading branch information
gitbrent committed Sep 25, 2019
1 parent a081249 commit dd2bb7f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fixed: lineDash Option is not in documentation [\#526](https://github.com/gitbrent/PptxGenJS/issue/526) ([Jank1310](https://github.com/Jank1310))
- Fixed: Downloading PPT in iOS using Safari does not work. File named as UNKNOWN. [\#540](https://github.com/gitbrent/PptxGenJS/issue/540) ([mustafagentrit](https://github.com/mustafagentrit))
- Fixed: ReferenceError: strXmlBullet is not defined [\#587](https://github.com/gitbrent/PptxGenJS/issue/587) ([Saurabh-Chandil](https://github.com/Saurabh-Chandil))
- Fixed: Getting paraPropXmlCore not defined error - line 4200 in pptxgen.bundle.js missing "var" declaration [\#596](https://github.com/gitbrent/PptxGenJS/issue/596) ([rajeearyal](https://github.com/rajeearyal))
### Removed


Expand Down
4 changes: 2 additions & 2 deletions dist/pptxgen.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ if ( NODEJS || APPJS ) {
var PptxGenJS = function(){
// APP
var APP_VER = "2.6.0-beta";
var APP_BLD = "20190507";
var APP_BLD = "20190926";

// CONSTANTS
var MASTER_OBJECTS = {
Expand Down Expand Up @@ -4149,7 +4149,7 @@ var PptxGenJS = function(){
}

function genXmlParagraphProperties(textObj, isDefault) {
var strXmlBullet = '', strXmlLnSpc = '', strXmlParaSpc = '';
var strXmlBullet = '', strXmlLnSpc = '', strXmlParaSpc = '', paraPropXmlCore = '';
var bulletLvl0Margin = 342900;
var tag = isDefault ? 'a:lvl1pPr' : 'a:pPr';

Expand Down

0 comments on commit dd2bb7f

Please sign in to comment.