Skip to content

Commit

Permalink
Version 1.1.5
Browse files Browse the repository at this point in the history
JS code fix
  • Loading branch information
Martinomagnifico committed Oct 14, 2022
1 parent 3c901c1 commit 458f074
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Changelog


## [1.1.5] - 2022-10-14

### Fixed
- JS code fix


## [1.1.4] - 2022-10-09

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "reveal.js-fsfx",
"version": "1.1.4",
"version": "1.1.5",
"description": "A plugin for Reveal.js 4, that enters or exits fullscreen, and toggles classes on certain elements",
"keywords": "reveal, reveal.js, reveal-plugin, plugin, fullscreen, screenfull",
"homepage": "https://github.com/Martinomagnifico/reveal.js-fsfx",
Expand Down
3 changes: 1 addition & 2 deletions plugin/fsfx/fsfx.esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* https://github.com/Martinomagnifico
*
* FsFx.js for Reveal.js
* Version 1.1.4
* Version 1.1.5
*
* @license
* MIT licensed
Expand Down Expand Up @@ -334,7 +334,6 @@ var Plugin = function Plugin() {
goNext();
} else {
screenfull$1.request(viewport).then(goNext());
element.requestFullscreen();
}
} else {
screenfull$1.toggle(viewport);
Expand Down
3 changes: 1 addition & 2 deletions plugin/fsfx/fsfx.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* https://github.com/Martinomagnifico
*
* FsFx.js for Reveal.js
* Version 1.1.4
* Version 1.1.5
*
* @license
* MIT licensed
Expand Down Expand Up @@ -340,7 +340,6 @@
goNext();
} else {
screenfull$1.request(viewport).then(goNext());
element.requestFullscreen();
}
} else {
screenfull$1.toggle(viewport);
Expand Down
1 change: 0 additions & 1 deletion plugin/fsfx/plugin-src.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ const Plugin = () => {
goNext();
} else {
screenfull.request(viewport).then(goNext());
element.requestFullscreen()
}
} else {
screenfull.toggle(viewport);
Expand Down

0 comments on commit 458f074

Please sign in to comment.