fix speaker view bug, bump version to 5.0.1 #3512

This commit is contained in:
Hakim El Hattab
2023-10-30 07:37:05 +01:00
parent eee0a4ff24
commit 010f06c339
10 changed files with 13 additions and 13 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
/*!
* reveal.js 5.0.0
* reveal.js 5.0.1
* https://revealjs.com
* MIT licensed
*
+2 -2
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
File diff suppressed because one or more lines are too long
+2 -2
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -28,7 +28,7 @@ import {
} from './utils/constants.js'
// The reveal.js version
export const VERSION = '5.0.0';
export const VERSION = '5.0.1';
/**
* reveal.js
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "reveal.js",
"version": "5.0.0",
"version": "5.0.1",
"description": "The HTML Presentation Framework",
"homepage": "https://revealjs.com",
"subdomain": "revealjs",
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+2 -2
View File
@@ -533,8 +533,8 @@
var urlSeparator = /\?/.test(data.url) ? '&' : '?';
var hash = '#/' + data.state.indexh + '/' + data.state.indexv;
var currentURL = data.url + urlSeparator + params + '&postMessageEvents=true' + hash;
var upcomingURL = data.url + urlSeparator + params + '&controls=false' + hash;
var currentURL = data.url + urlSeparator + params + '&scrollActivationWidth=false&postMessageEvents=true' + hash;
var upcomingURL = data.url + urlSeparator + params + '&scrollActivationWidth=false&controls=false' + hash;
currentSlide = document.createElement( 'iframe' );
currentSlide.setAttribute( 'width', 1280 );