1
0
mirror of https://github.com/hakimel/reveal.js.git synced 2025-08-04 13:47:37 +02:00

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

2
dist/reveal.css vendored
View File

@@ -1,5 +1,5 @@
/*!
* reveal.js 5.0.0
* reveal.js 5.0.1
* https://revealjs.com
* MIT licensed
*

4
dist/reveal.esm.js vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

4
dist/reveal.js vendored

File diff suppressed because one or more lines are too long

2
dist/reveal.js.map vendored

File diff suppressed because one or more lines are too long

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

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

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 );