-
Notifications
You must be signed in to change notification settings - Fork 331
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix whitespace in patch and applied version
follow up on #11025
Showing
2 changed files
with
8 additions
and
6 deletions.
There are no files selected for viewing
10 changes: 6 additions & 4 deletions
10
package/src/common/patches/revealjs-plugin-0001-chakboard-backdrop-filter.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters