From 7ce45e4119f8ae6dafc8df2e71fefc90c287823f Mon Sep 17 00:00:00 2001 From: Christian Krause <christian.krause@idiv.de> Date: Tue, 13 Sep 2022 16:13:45 +0200 Subject: [PATCH] bumps reveal.js --- basics.html | 59 +++++++++++++++++++++++++++++------------------------ reveal.js | 2 +- 2 files changed, 33 insertions(+), 28 deletions(-) diff --git a/basics.html b/basics.html index 45b29ea..9d6f568 100644 --- a/basics.html +++ b/basics.html @@ -1,16 +1,23 @@ <!DOCTYPE html> -<html> +<html lang="en"> <head> <meta charset="utf-8" /> - <meta name="author" content="Dirk Sarpe and Christian Krause" /> + <title>git basics</title> + + <meta name="description" content="a git seminar for beginners" /> + <meta name="author" content="Dirk Sarpe and Christian Krause" /> + <meta name="apple-mobile-web-app-capable" content="yes" /> <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" /> + <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> - <link rel="stylesheet" href="reveal.js/css/reveal.css" /> - <link rel="stylesheet" href="reveal.js/lib/css/zenburn.css" /> - <style type="text/css">code{white-space: pre;}</style> - <link rel="stylesheet" href="reveal.js/css/theme/black.css" id="theme" /> + + <link rel="stylesheet" href="reveal.js/dist/reset.css"> + <link rel="stylesheet" href="reveal.js/dist/reveal.css"> + <link rel="stylesheet" href="reveal.js/dist/theme/black.css" id="theme"> + <link rel="stylesheet" href="reveal.js/plugin/highlight/monokai.css"> + <link rel="stylesheet" href="css/company-logo.css" /> <link rel="stylesheet" href="css/ribbon.css" /> <link rel="stylesheet" href="css/crawl.css" /> @@ -1173,30 +1180,28 @@ <!-- reveal.stuff --> - <script src="reveal.js/lib/js/head.min.js"></script> - <script src="reveal.js/js/reveal.js"></script> + <script src="reveal.js/dist/reveal.js"></script> + + <script src="reveal.js/plugin/zoom/zoom.js"></script> + <script src="reveal.js/plugin/notes/notes.js"></script> + <script src="reveal.js/plugin/search/search.js"></script> + <script src="reveal.js/plugin/markdown/markdown.js"></script> + <script src="reveal.js/plugin/highlight/highlight.js"></script> <script> Reveal.initialize({ - controls: true, - progress: true, - slideNumber: true, - history: true, - center: true, - keyboard: true, - maxScale: 1.5, - slideNumber: false, - theme: Reveal.getQueryHash().theme, - transition: Reveal.getQueryHash().transition || 'default', - - dependencies: [ - { src: 'reveal.js/lib/js/classList.js', condition: function() { return !document.body.classList; } }, - { src: 'reveal.js/plugin/zoom-js/zoom.js', async: true, condition: function() { return !!document.body.classList; } }, - { src: 'reveal.js/plugin/notes/notes.js', async: true, condition: function() { return !!document.body.classList; } }, - { src: 'reveal.js/plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } }, - { src: 'reveal.js/plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } }, - { src: 'reveal.js/plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } }, - ] + controls: true, + progress: true, + center: true, + hash: true, + + plugins: [ + RevealZoom, + RevealNotes, + RevealSearch, + RevealMarkdown, + RevealHighlight, + ] }); </script> </body> diff --git a/reveal.js b/reveal.js index 65bdccd..3fcf0db 160000 --- a/reveal.js +++ b/reveal.js @@ -1 +1 @@ -Subproject commit 65bdccd5807b6dfecad6eb3ea38872436d291e81 +Subproject commit 3fcf0db96e1a65336677e4ff7df813ed9c4a6792 -- GitLab