prevent repeated initialization #1616

master
Hakim El Hattab 2016-06-10 10:41:16 +02:00
parent d78a8046dc
commit 6bfa48a667
1 changed files with 8 additions and 0 deletions

View File

@ -165,6 +165,9 @@
},
// Flags if Reveal.initialize() has been called
initialized = false,
// Flags if reveal.js is loaded (has dispatched the 'ready' event)
loaded = false,
@ -257,6 +260,11 @@
*/
function initialize( options ) {
// Make sure we only initialize once
if( initialized === true ) return;
initialized = true;
checkCapabilities();
if( !features.transforms2d && !features.transforms3d ) {