Skip to content

Commit

Permalink
fix whitespace in patch and applied version
Browse files Browse the repository at this point in the history
follow up on #11025
cderv committed Oct 10, 2024

Verified

This commit was signed with the committer’s verified signature.
cderv Christophe Dervieux
1 parent eaa878a commit e51b07e
Showing 2 changed files with 8 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
diff --git a/src/resources/formats/revealjs/plugins/chalkboard/plugin.js b/src/resources/formats/revealjs/plugins/chalkboard/plugin.js
index 6dfb4b5a5..543ee101f 100644
index 543ee101f..e9bd64ea3 100644
--- a/src/resources/formats/revealjs/plugins/chalkboard/plugin.js
+++ b/src/resources/formats/revealjs/plugins/chalkboard/plugin.js
@@ -444,6 +444,8 @@ const initChalkboard = function ( Reveal ) {
@@ -444,8 +444,8 @@ const initChalkboard = function ( Reveal ) {
container.style.visibility = 'visible';
container.style.pointerEvents = 'none';
container.style['backdrop-filter'] = 'none';
+ // for older safari
+ container.style["-webkit-backdrop-filter"] = "none";
- // for older safari
- container.style["-webkit-backdrop-filter"] = "none";
+ // for older safari
+ container.style["-webkit-backdrop-filter"] = "none";

var slides = document.querySelector( '.slides' );
var aspectRatio = Reveal.getConfig().width / Reveal.getConfig().height;
4 changes: 2 additions & 2 deletions src/resources/formats/revealjs/plugins/chalkboard/plugin.js
Original file line number Diff line number Diff line change
@@ -444,8 +444,8 @@ const initChalkboard = function ( Reveal ) {
container.style.visibility = 'visible';
container.style.pointerEvents = 'none';
container.style['backdrop-filter'] = 'none';
// for older safari
container.style["-webkit-backdrop-filter"] = "none";
// for older safari
container.style["-webkit-backdrop-filter"] = "none";

var slides = document.querySelector( '.slides' );
var aspectRatio = Reveal.getConfig().width / Reveal.getConfig().height;

0 comments on commit e51b07e

Please sign in to comment.