prevent same plugin from being registered twice
This commit is contained in:
parent
fbbae1dc55
commit
7b62a0f356
15
js/reveal.js
15
js/reveal.js
@ -1558,12 +1558,17 @@
|
||||
*/
|
||||
function registerPlugin( id, plugin ) {
|
||||
|
||||
plugins[id] = plugin;
|
||||
if( plugins[id] === undefined ) {
|
||||
plugins[id] = plugin;
|
||||
|
||||
// If a plugin is registered after reveal.js is loaded,
|
||||
// initialize it right away
|
||||
if( loaded && typeof plugin.init === 'function' ) {
|
||||
plugin.init();
|
||||
// If a plugin is registered after reveal.js is loaded,
|
||||
// initialize it right away
|
||||
if( loaded && typeof plugin.init === 'function' ) {
|
||||
plugin.init();
|
||||
}
|
||||
}
|
||||
else {
|
||||
console.warn( 'reveal.js: "'+ id +'" plugin has already been registered' );
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user