plugin consistency

master
Hakim El Hattab 2020-04-29 11:56:43 +02:00
parent 163db29d43
commit 619b3a087c
4 changed files with 6 additions and 6 deletions

File diff suppressed because one or more lines are too long

View File

@ -5,7 +5,7 @@ import './highlight-line-numbers.js'
* reveal.js plugin that adds syntax highlight support. * reveal.js plugin that adds syntax highlight support.
*/ */
let Plugin = { const Plugin = {
id: 'highlight', id: 'highlight',

View File

@ -9,7 +9,7 @@
* 3. This window proceeds to send the current presentation state * 3. This window proceeds to send the current presentation state
* to the notes window * to the notes window
*/ */
let Plugin = (function() { const Plugin = () => {
var notesPopup = null; var notesPopup = null;
@ -180,6 +180,6 @@ let Plugin = (function() {
open: openNotes open: openNotes
}; };
})(); };
export default () => Plugin; export default Plugin;

View File

@ -1,7 +1,7 @@
/*! /*!
* reveal.js Zoom plugin * reveal.js Zoom plugin
*/ */
var Plugin = { const Plugin = {
id: 'zoom', id: 'zoom',