Skip to content

Commit

Permalink
Added Pull gitbrent#633 - fix for float margin rounding
Browse files Browse the repository at this point in the history
  • Loading branch information
gitbrent committed Dec 31, 2019
1 parent f4c84c0 commit bdf747a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Expand Up @@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Sections


## [3.0.0] - 2019-11-31
## [3.0.0] - 2019-12-31
### Added
- Ability to specify numbered list format [\#452](https://github.com/gitbrent/PptxGenJS/issue/452) ([mayvazyan](https://github.com/mayvazyan))
- New cat/val axis options: majorTickMark/minorTickMark [\#473](https://github.com/gitbrent/PptxGenJS/pull/473) ([RokasDie](https://github.com/RokasDie))
Expand All @@ -24,6 +24,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fixed: Exporting images corrupting file. [\#578](https://github.com/gitbrent/PptxGenJS/issue/578) ([joeberth](https://github.com/joeberth))
- Fixed: Multiple files getting downloaded if multiple base64 images are added. [\#581](https://github.com/gitbrent/PptxGenJS/issue/581) ([akshaymagapu](https://github.com/akshaymagapu))
- Fixed: Links in tables won't work on tables generated with autoPage [\#583](https://github.com/gitbrent/PptxGenJS/issue/583) ([githuis](https://github.com/githuis))
- Fixed: Added rounding of margin values to avoid invalid XML [\#633](https://github.com/gitbrent/PptxGenJS/pull/633) ([kevinresol](https://github.com/kevinresol))
### Removed
- Removed: jQuery is no longer required (!)

Expand Down
2 changes: 1 addition & 1 deletion demos/common/demos.js
Expand Up @@ -2603,7 +2603,7 @@ function genSlides_Text(pptx) {
);

// 4: Hyperlinks
slide.addText("Hyperlinks:", { x:7.0, y:6.0, w:1.75, h:0.3, margin:0, color:'0088CC' });
slide.addText("Hyperlinks:", { x:7.0, y:6.0, w:1.75, h:0.3, margin:0.123, color:'0088CC' });
slide.addText(
[
{ text:'Link with Tooltip', options:{ hyperlink:{ url:'https://github.com/gitbrent/pptxgenjs', tooltip:'Visit Homepage' } } },
Expand Down

0 comments on commit bdf747a

Please sign in to comment.