-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreveal-presentation.js
28 lines (26 loc) · 1 KB
/
reveal-presentation.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import Reveal from 'reveal.js';
import Markdown from 'reveal.js/plugin/markdown/markdown.esm.js';
import 'reveal.js/dist/reveal.css';
import 'reveal.js/dist/theme/white.css';
Reveal.initialize({
plugins: [ Markdown ],
progress: false,
controls: true
}).then(() => {
// $(document).ready(
// function(){
// // $('body').on('submit','form',function() {
// // var sessionCode = $('#session_code')[0].value;
// // $("section[data-microsquad]").each(
// // function(){
// // var iframeUrl = new URL( $(this).data("background-iframe") );
// // iframeUrl.searchParams.set("sc", sessionCode);
// // $(this).data("background-iframe",iframeUrl.href);
// // console.log("Now "+$(this).data("background-iframe"));
// // }
// // );
// // return false;
// // });
// }
// );
});