Skip to content

Commit

Permalink
Fixes for Reveal.js 3.0.0. Closes #2
Browse files Browse the repository at this point in the history
  • Loading branch information
dploeger committed Mar 5, 2015
1 parent da851d3 commit f42936b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: Jekyll and Reveal.js

# The Reveal theme
reveal_theme: default.css
reveal_theme: black.css

# The Reveal transition
reveal_transition: default
Expand Down
4 changes: 2 additions & 2 deletions _layouts/reveal.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">

<link rel="stylesheet" href="{{ site.reveal_path }}css/reveal.min.css">
<link rel="stylesheet" href="{{ site.reveal_path }}css/reveal.css">
<link rel="stylesheet" href="{{ site.reveal_theme_path }}{{ site.reveal_theme }}" id="theme">

<!-- For syntax highlighting -->
Expand Down Expand Up @@ -43,7 +43,7 @@
</div>

<script src="{{ site.reveal_path }}lib/js/head.min.js"></script>
<script src="{{ site.reveal_path }}js/reveal.min.js"></script>
<script src="{{ site.reveal_path }}js/reveal.js"></script>

<script>

Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
---

{% for post in site.posts reversed %}
<section data-markdown data-separator="^\n---\n$" data-vertical="^\n--\n$" data-notes="^Note:">
<section data-markdown data-separator="^\n---\n$" data-separator-vertical="^\n--\n$" data-notes="^Note:">
<script type="text/template">
{{ post.content }}
</script>
Expand Down
2 changes: 1 addition & 1 deletion reveal.js
Submodule reveal.js updated 86 files
+3 −1 .gitignore
+1 −1 .travis.yml
+19 −0 CONTRIBUTING.md
+58 −21 Gruntfile.js
+1 −1 LICENSE
+78 −61 README.md
+193 −167 css/print/paper.css
+20 −53 css/print/pdf.css
+912 −1,651 css/reveal.css
+0 −7 css/reveal.min.css
+1,316 −0 css/reveal.scss
+177 −60 css/theme/beige.css
+261 −0 css/theme/black.css
+191 −75 css/theme/blood.css
+0 −148 css/theme/default.css
+267 −0 css/theme/league.css
+168 −51 css/theme/moon.css
+165 −42 css/theme/night.css
+181 −58 css/theme/serif.css
+173 −50 css/theme/simple.css
+170 −47 css/theme/sky.css
+168 −51 css/theme/solarized.css
+1 −12 css/theme/source/beige.scss
+49 −0 css/theme/source/black.scss
+4 −4 css/theme/source/blood.scss
+5 −13 css/theme/source/league.scss
+1 −12 css/theme/source/moon.scss
+1 −1 css/theme/source/serif.scss
+1 −1 css/theme/source/sky.scss
+1 −12 css/theme/source/solarized.scss
+49 −0 css/theme/source/white.scss
+13 −4 css/theme/template/settings.scss
+182 −13 css/theme/template/theme.scss
+261 −0 css/theme/white.css
+198 −178 index.html
+1,286 −392 js/reveal.js
+0 −9 js/reveal.min.js
+74 −71 lib/css/zenburn.css
+0 −0 lib/font/league-gothic/LICENSE
+10 −0 lib/font/league-gothic/league-gothic.css
+ lib/font/league-gothic/league-gothic.eot
+ lib/font/league-gothic/league-gothic.ttf
+ lib/font/league-gothic/league-gothic.woff
+ lib/font/league_gothic-webfont.eot
+0 −230 lib/font/league_gothic-webfont.svg
+ lib/font/league_gothic-webfont.ttf
+ lib/font/league_gothic-webfont.woff
+45 −0 lib/font/source-sans-pro/LICENSE
+ lib/font/source-sans-pro/source-sans-pro-italic.eot
+ lib/font/source-sans-pro/source-sans-pro-italic.ttf
+ lib/font/source-sans-pro/source-sans-pro-italic.woff
+ lib/font/source-sans-pro/source-sans-pro-regular.eot
+ lib/font/source-sans-pro/source-sans-pro-regular.ttf
+ lib/font/source-sans-pro/source-sans-pro-regular.woff
+ lib/font/source-sans-pro/source-sans-pro-semibold.eot
+ lib/font/source-sans-pro/source-sans-pro-semibold.ttf
+ lib/font/source-sans-pro/source-sans-pro-semibold.woff
+ lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot
+ lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf
+ lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff
+39 −0 lib/font/source-sans-pro/source-sans-pro.css
+9 −7 package.json
+2 −4 plugin/highlight/highlight.js
+4 −2 plugin/leap/leap.js
+2 −2 plugin/markdown/example.html
+8 −7 plugin/markdown/markdown.js
+49 −46 plugin/notes-server/client.js
+28 −21 plugin/notes-server/index.js
+351 −97 plugin/notes-server/notes.html
+321 −182 plugin/notes/notes.html
+89 −45 plugin/notes/notes.js
+0 −39 plugin/postmessage/example.html
+0 −42 plugin/postmessage/postmessage.js
+24 −20 plugin/print-pdf/print-pdf.js
+77 −57 plugin/zoom-js/zoom.js
+2 −2 test/examples/barebones.html
+2 −2 test/examples/embedded-media.html
+2 −2 test/examples/math.html
+29 −7 test/examples/slide-backgrounds.html
+6 −6 test/test-markdown-element-attributes.html
+7 −7 test/test-markdown-slide-attributes.html
+4 −4 test/test-markdown.html
+83 −0 test/test-pdf.html
+15 −0 test/test-pdf.js
+5 −4 test/test.html
+143 −9 test/test.js

0 comments on commit f42936b

Please sign in to comment.