aboutsummaryrefslogtreecommitdiff
path: root/plugin
diff options
context:
space:
mode:
authorHakim El Hattab <hakim.elhattab@gmail.com>2020-04-17 09:47:03 +0200
committerHakim El Hattab <hakim.elhattab@gmail.com>2020-04-17 09:47:03 +0200
commitd9690462e0e3818a7741a8710bb721f4380009e1 (patch)
tree9716a39c17cb92d303d1e73337bdf0e6375a67b2 /plugin
parent08f29f08a288c64135c67d49ba992152bc75df3f (diff)
downloadfosdem-2021-minimalism-presentation-d9690462e0e3818a7741a8710bb721f4380009e1.tar
fosdem-2021-minimalism-presentation-d9690462e0e3818a7741a8710bb721f4380009e1.tar.gz
add 'plugins' config option, new way of registering es5 plugins
Diffstat (limited to 'plugin')
-rw-r--r--plugin/highlight/highlight.es57
-rw-r--r--plugin/markdown/markdown.es57
-rw-r--r--plugin/math/math.es57
-rw-r--r--plugin/notes/notes.es57
-rw-r--r--plugin/search/search.es57
-rw-r--r--plugin/search/search.js2
-rw-r--r--plugin/zoom/zoom.es57
7 files changed, 1 insertions, 43 deletions
diff --git a/plugin/highlight/highlight.es5 b/plugin/highlight/highlight.es5
deleted file mode 100644
index 44eb307..0000000
--- a/plugin/highlight/highlight.es5
+++ /dev/null
@@ -1,7 +0,0 @@
-/**
- * This is used to compile a self-registering
- * es5 compatible version of the plugin.
- */
-
-import plugin from './highlight.js'
-Reveal.registerPlugin( plugin ); \ No newline at end of file
diff --git a/plugin/markdown/markdown.es5 b/plugin/markdown/markdown.es5
deleted file mode 100644
index 0f2ee15..0000000
--- a/plugin/markdown/markdown.es5
+++ /dev/null
@@ -1,7 +0,0 @@
-/**
- * This is used to compile a self-registering
- * es5 compatible version of the plugin.
- */
-
-import plugin from './markdown.js'
-Reveal.registerPlugin( plugin ); \ No newline at end of file
diff --git a/plugin/math/math.es5 b/plugin/math/math.es5
deleted file mode 100644
index 4c41e3b..0000000
--- a/plugin/math/math.es5
+++ /dev/null
@@ -1,7 +0,0 @@
-/**
- * This is used to compile a self-registering
- * es5 compatible version of the plugin.
- */
-
-import plugin from './math.js'
-Reveal.registerPlugin( plugin ); \ No newline at end of file
diff --git a/plugin/notes/notes.es5 b/plugin/notes/notes.es5
deleted file mode 100644
index 8945df3..0000000
--- a/plugin/notes/notes.es5
+++ /dev/null
@@ -1,7 +0,0 @@
-/**
- * This is used to compile a self-registering
- * es5 compatible version of the plugin.
- */
-
-import plugin from './notes.js'
-Reveal.registerPlugin( plugin ); \ No newline at end of file
diff --git a/plugin/search/search.es5 b/plugin/search/search.es5
deleted file mode 100644
index 2428f72..0000000
--- a/plugin/search/search.es5
+++ /dev/null
@@ -1,7 +0,0 @@
-/**
- * This is used to compile a self-registering
- * es5 compatible version of the plugin.
- */
-
-import plugin from './search.js'
-Reveal.registerPlugin( plugin ); \ No newline at end of file
diff --git a/plugin/search/search.js b/plugin/search/search.js
index e211b87..d4cefcb 100644
--- a/plugin/search/search.js
+++ b/plugin/search/search.js
@@ -1,4 +1,4 @@
-/*
+/*!
* Handles finding a text string anywhere in the slides and showing the next occurrence to the user
* by navigatating to that slide and highlighting it.
*
diff --git a/plugin/zoom/zoom.es5 b/plugin/zoom/zoom.es5
deleted file mode 100644
index 71a2f1a..0000000
--- a/plugin/zoom/zoom.es5
+++ /dev/null
@@ -1,7 +0,0 @@
-/**
- * This is used to compile a self-registering
- * es5 compatible version of the plugin.
- */
-
-import plugin from './zoom.js'
-Reveal.registerPlugin( plugin ); \ No newline at end of file