plugin consistency
This commit is contained in:
parent
163db29d43
commit
619b3a087c
2
dist/plugin/notes.js
vendored
2
dist/plugin/notes.js
vendored
File diff suppressed because one or more lines are too long
|
@ -5,7 +5,7 @@ import './highlight-line-numbers.js'
|
|||
* reveal.js plugin that adds syntax highlight support.
|
||||
*/
|
||||
|
||||
let Plugin = {
|
||||
const Plugin = {
|
||||
|
||||
id: 'highlight',
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
* 3. This window proceeds to send the current presentation state
|
||||
* to the notes window
|
||||
*/
|
||||
let Plugin = (function() {
|
||||
const Plugin = () => {
|
||||
|
||||
var notesPopup = null;
|
||||
|
||||
|
@ -180,6 +180,6 @@ let Plugin = (function() {
|
|||
open: openNotes
|
||||
};
|
||||
|
||||
})();
|
||||
};
|
||||
|
||||
export default () => Plugin;
|
||||
export default Plugin;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*!
|
||||
* reveal.js Zoom plugin
|
||||
*/
|
||||
var Plugin = {
|
||||
const Plugin = {
|
||||
|
||||
id: 'zoom',
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user