plugin consistency
This commit is contained in:
@ -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',
|
||||
|
||||
|
Reference in New Issue
Block a user