Răsfoiți Sursa

fixed documentation on resize event

Mario Wolff 7 ani în urmă
părinte
comite
126365627b
1 a modificat fișierele cu 2 adăugiri și 1 ștergeri
  1. 2 1
      README.md

+ 2 - 1
README.md

@@ -41,6 +41,7 @@ reveal.js comes with a broad range of features including [nested slides](https:/
   - [Fullscreen mode](#fullscreen-mode)
   - [Fullscreen mode](#fullscreen-mode)
   - [Embedded media](#embedded-media)
   - [Embedded media](#embedded-media)
   - [Stretching elements](#stretching-elements)
   - [Stretching elements](#stretching-elements)
+  - [Resize Event](#resize-event)
   - [postMessage API](#postmessage-api)
   - [postMessage API](#postmessage-api)
 - [PDF Export](#pdf-export)
 - [PDF Export](#pdf-export)
 - [Theming](#theming)
 - [Theming](#theming)
@@ -963,7 +964,7 @@ Limitations:
 When reveal.js changes the scale of the slides it fires an resize event. You can subscribe to the event to resize your elements accordingly.
 When reveal.js changes the scale of the slides it fires an resize event. You can subscribe to the event to resize your elements accordingly.
 
 
 ```javascript
 ```javascript
-Reveal.addEventListener( 'overviewshown', function( event ) { /* console.log(event.scale,event.oldscale,event.size); */ } );
+Reveal.addEventListener( 'resize', function( event ) { /* console.log(event.scale,event.oldscale,event.size); */ } );
 ```
 ```
 
 
 ### postMessage API
 ### postMessage API