Reveal.VERSION is now available prior to initialization #2651
This commit is contained in:
parent
feb43ffdc9
commit
a1f03cb337
2
dist/reveal.esm.js
vendored
2
dist/reveal.esm.js
vendored
File diff suppressed because one or more lines are too long
2
dist/reveal.js
vendored
2
dist/reveal.js
vendored
File diff suppressed because one or more lines are too long
@ -1,4 +1,4 @@
|
|||||||
import Deck from './reveal.js'
|
import Deck, { VERSION } from './reveal.js'
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Expose the Reveal class to the window. To create a
|
* Expose the Reveal class to the window. To create a
|
||||||
@ -51,4 +51,6 @@ Reveal.initialize = options => {
|
|||||||
}
|
}
|
||||||
} );
|
} );
|
||||||
|
|
||||||
|
Reveal.VERSION = VERSION;
|
||||||
|
|
||||||
export default Reveal;
|
export default Reveal;
|
@ -25,6 +25,9 @@ import {
|
|||||||
POST_MESSAGE_METHOD_BLACKLIST
|
POST_MESSAGE_METHOD_BLACKLIST
|
||||||
} from './utils/constants.js'
|
} from './utils/constants.js'
|
||||||
|
|
||||||
|
// The reveal.js version
|
||||||
|
export const VERSION = '4.0.0-rc.1';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* reveal.js
|
* reveal.js
|
||||||
* https://revealjs.com
|
* https://revealjs.com
|
||||||
@ -43,9 +46,6 @@ export default function( revealElement, options ) {
|
|||||||
|
|
||||||
const Reveal = {};
|
const Reveal = {};
|
||||||
|
|
||||||
// The reveal.js version
|
|
||||||
const VERSION = '4.0.0-rc.1';
|
|
||||||
|
|
||||||
// Configuration defaults, can be overridden at initialization time
|
// Configuration defaults, can be overridden at initialization time
|
||||||
let config,
|
let config,
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user