aboutsummaryrefslogtreecommitdiff
path: root/test/examples/multiple-instances.html
diff options
context:
space:
mode:
authorHakim El Hattab <hakim.elhattab@gmail.com>2020-04-16 16:04:26 +0200
committerHakim El Hattab <hakim.elhattab@gmail.com>2020-04-16 16:04:26 +0200
commit561c3ff4437ed334cbce66e279d17a3b11be7c38 (patch)
tree7c5dd6b921e21086d64baf9697d75cc8ecd4512f /test/examples/multiple-instances.html
parent7b151c232074fbab53bbb53efb35bccf332352b5 (diff)
downloadfosdem-2021-minimalism-presentation-561c3ff4437ed334cbce66e279d17a3b11be7c38.tar
fosdem-2021-minimalism-presentation-561c3ff4437ed334cbce66e279d17a3b11be7c38.tar.gz
update presentation examples move to root @ /examples
Diffstat (limited to 'test/examples/multiple-instances.html')
-rw-r--r--test/examples/multiple-instances.html66
1 files changed, 0 insertions, 66 deletions
diff --git a/test/examples/multiple-instances.html b/test/examples/multiple-instances.html
deleted file mode 100644
index a3c27b5..0000000
--- a/test/examples/multiple-instances.html
+++ /dev/null
@@ -1,66 +0,0 @@
-<!doctype html>
-<html lang="en">
-
- <head>
- <meta charset="utf-8">
-
- <title>reveal.js - Multiple Instances</title>
-
- <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
-
- <link rel="stylesheet" href="../../dist/reveal.css">
- <link rel="stylesheet" href="../../dist/theme/white.css" id="theme">
- </head>
-
- <body style="background: #ddd;">
-
- <div style="display: flex; flex-direction: row;">
- <div class="reveal deck1" style="width: 100%; height: 50vh; margin: 10px;">
- <div class="slides">
- <section data-markdown>
- <script type="text/template">
- ## Slide attributes
- </script>
- </section>
- <section>1.2</section>
- <section>1.3</section>
- </div>
- </div>
-
- <div class="reveal deck2" style="width: 100%; height: 50vh; margin: 10px;">
- <div class="slides">
- <section data-markdown>
- <script type="text/template">
- ## Slide attributes
- </script>
- </section>
- <section>2.2</section>
- <section>2.3</section>
- </div>
- </div>
- </div>
-
- <script type="module">
-
- import Reveal from '../../js/reveal.js';
- import Markdown from '../../plugin/markdown/markdown.js';
-
- let r1 = new Reveal( document.querySelector( '.deck1' ), {
- embedded: true,
- keyboard: false
- } );
- r1.initialize().then( () => {
-
- let r2 = new Reveal( document.querySelector( '.deck2' ), {
- embedded: true,
- keyboard: false,
- dependencies: [ Markdown ]
- } );
- r2.initialize();
-
- } );
-
- </script>
-
- </body>
-</html>