Skip to content

Commit

Permalink
fix for issue #427
Browse files Browse the repository at this point in the history
  • Loading branch information
gitbrent committed Feb 8, 2019
1 parent c40e3b5 commit b9e80e5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- New Chart Option: `valAxisCrossesAt` [\#474](https://github.com/gitbrent/PptxGenJS/pull/474) ([ReimaFrgos](https://github.com/ReimaFrgos))
- Docs: Show how to save as Blob using client browser [\#478](https://github.com/gitbrent/PptxGenJS/issue/478) ([crazyx13th](https://github.com/crazyx13th))
### Changed
- Fixed: Dynamic Text Options do not apply [\#427](https://github.com/gitbrent/PptxGenJS/issue/427) ([sunnyar](https://github.com/sunnyar))
- Removed: legacy/deprecated attributes from README javascript script tags [\#431](https://github.com/gitbrent/PptxGenJS/pull/431) ([efx](https://github.com/efx))
- Fixed: issue with SlideNumber `fontSize` float values [\#432](https://github.com/gitbrent/PptxGenJS/issue/432) ([efx](https://github.com/efx))
- Fixed: query and fragment from image URL extension [\#433](https://github.com/gitbrent/PptxGenJS/pull/433) ([katsuya-horiuchi](https://github.com/katsuya-horiuchi))
Expand Down
6 changes: 3 additions & 3 deletions dist/pptxgen.js
Original file line number Diff line number Diff line change
Expand Up @@ -5578,9 +5578,9 @@ var PptxGenJS = function(){

// D: Add any additional objects
if ( opts.addImage ) newSlide.addImage({ path:opts.addImage.url, x:opts.addImage.x, y:opts.addImage.y, w:opts.addImage.w, h:opts.addImage.h });
if ( opts.addShape ) newSlide.addShape( opts.addShape.shape, (opts.addShape.opts || {}) );
if ( opts.addTable ) newSlide.addTable( opts.addTable.rows, (opts.addTable.opts || {}) );
if ( opts.addText ) newSlide.addText( opts.addText.text, (opts.addText.opts || {}) );
if ( opts.addShape ) newSlide.addShape( opts.addShape.shape, (opts.addShape.opts || opts.addShape.options || {}) );
if ( opts.addTable ) newSlide.addTable( opts.addTable.rows, (opts.addTable.opts || opts.addTable.options || {}) );
if ( opts.addText ) newSlide.addText( opts.addText.text, (opts.addText.opts || opts.addText.options || {}) );
});
}
};
Expand Down

0 comments on commit b9e80e5

Please sign in to comment.