Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Data separator and data vertical don't work with external markdown #929

Closed
ocombe opened this issue May 29, 2014 · 16 comments
Closed

Data separator and data vertical don't work with external markdown #929

ocombe opened this issue May 29, 2014 · 16 comments
Labels

Comments

@ocombe
Copy link

ocombe commented May 29, 2014

I tried the following and it worked:

<section data-markdown data-separator="^\n----\n$" data-vertical="^\n---\n$">
  <script type="text/template">
    ###Title

    ---

    ####Title 2
    * 1
    * 2
  </script>
</section>

capture d cran 2014-05-29 15 41 35

But if I use an external markdown file:

<section data-markdown="slides/test.md" data-separator="^\n----\n$" data-vertical="^\n---\n$"></section>

Everything is stacked in one page, the vertical slides are not created ...
capture d cran 2014-05-29 15 40 43

Any idea ? Is it a bug or a config problem ?

@seanorama
Copy link

Same problem here.

@rhhamburg
Copy link

This is a problem with the newline sign. Windows use \r\n and not \n. A quik fix for me was to add the following code in line 129 in the plugin file markdown.js

markdown = markdown.replace(/(\r\n|\r)/g, '\n');

The code then looks like this:

function slidify( markdown, options ) {

  options = getSlidifyOptions( options );

  markdown = markdown.replace(/(\r\n|\r)/g, '\n');

  var separatorRegex = new RegExp( options.separator + ( options.verticalSeparator ? '|' + options.verticalSeparator : '' ), 'mg' ),
  horizontalSeparatorRegex = new RegExp( options.separator );

...

Hope that helps to find a clean solution 😉

@jgn
Copy link

jgn commented Dec 9, 2014

Folks, it looks to me as though the separators are actually processed after the external markdown has been converted to HTML.

Here's the sequence in markdown.js where the external markdown is processed (see https://github.com/hakimel/reveal.js/blob/master/plugin/markdown/markdown.js#L386-L388):

        processSlides: processSlides,
        convertSlides: convertSlides,
        slidify: slidify

convertSlides calls the marked function to convert data-markdown to HTML.

Then slidify is called, which uses data-separator. The upshot of this is that if you want to separate your slides with ---, then you have to set the data-separator to <hr>.

For sure this should be in the docs, unless it amounts to a difference between the way markdown is processed inline vs. external -- then the bug should be fixed.

@tlyim
Copy link

tlyim commented Dec 13, 2014

@jgn
Copy link

jgn commented Dec 14, 2014

@acatyim For external markdown, that you serve through a web server?

@tlyim
Copy link

tlyim commented Dec 14, 2014

external markdown, that you serve through a web server"

Yes, see Reveal-md_ext.md and index.html below:

Reveal-md_ext.md:

### Operating cycle/Cash conversion cycle (CCC)

Companies use cash to purchase or manufacture inventories held for
resale. Inventories are usually purchased on credit from suppliers

Note:
This is my note.

- It can contain markdown
- like this list

- - -

### Cash conversion cycle

| A   | Suppliers (agree to) deliver      | Operations (*increasing inventory* by $X)     |
|-----|-----------------------------------|-----------------------------------------------|
|     | inventory                         | → Create accounting vehicle (*increasing*     |
|     | suppliers                         |                                               |
|     |                                   |                                               |
| B   | Customers (agree to) acquire      | Operations (*decreasing inventory* by $Y)     |
|     | that inventory                    | → Create accounting vehicle (booking          |

- - -


### Solution

The ratios present a contradictory picture of the company’s liquidity.
The current ratio increases from 1.6 to 2.1, showing strong and

The company’s DOH has deteriorated from 30 days to 55 days, i.e. the
company is holding increasingly greater amounts of inventory relative to problem.

- -

### **No more ratios, please!**

index.html:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>reveal.js - The HTML Presentation Framework</title>
  <meta name="description" content="A framework for easily creating beautiful presentations using HTML">
  <meta name="author" content="Hakim El Hattab">
  <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="css/reveal.min.css">
  <link rel="stylesheet" href="css/theme/default.css" id="theme">
  <!-- link rel="stylesheet" href="css/print/pdf.css" id="print" -->

  <!-- For syntax highlighting -->
  <link rel="stylesheet" href="lib/css/zenburn.css">

  <!-- If the query includes 'print-pdf', include the PDF print sheet -->
  <script>
    if (window.location.search.match(/print-pdf/gi)) {
      var link = document.createElement('link');

      link.rel = 'stylesheet';
      link.type = 'text/css';
      link.href = 'css/print/pdf.css';
      document.getElementsByTagName('head')[0].appendChild(link);
    }
  </script>

  <!--[if lt IE 9]>
    <script src="lib/js/html5shiv.js"></script>
  <![endif]-->
</head>
<body>
    <div class="reveal">
    <div class="slides">
  <!-- Slides  content to be added here -->


<section data-markdown="Reveal-md_ext.md" data-separator="^\n- - -\n$" data-vertical="^\n- -\n$" data-notes="^Note:"></section>

<!-- section data-markdown="Reveal-md_ext.md" data-separator="^\n\n\n" data-vertical="^\n\n" data-notes="^Note:"></section   -->


  <script src="lib/js/head.min.js"></script>
  <script src="js/reveal.min.js"></script>
  <script>
    // Full list of configuration options available here:
    // https://github.com/hakimel/reveal.js#configuration
    Reveal.initialize({
      controls: true,
      progress: true,
      history: true,
      center: true,

      theme: Reveal.getQueryHash().theme, // available themes are in /css/theme
      transition: Reveal.getQueryHash().transition || 'default', // default/cube/page/concave/zoom/linear/fade/none

      // Parallax scrolling
      // parallaxBackgroundImage: 'https://s3.amazonaws.com/hakim-static/reveal-js/reveal-parallax-1.jpg',
      // parallaxBackgroundSize: '2100px 900px',

      // Optional libraries used to extend on reveal.js
      dependencies: [{
        src: 'lib/js/classList.js',
        condition: function () {
          return !document.body.classList;
        }
      }, {
        src: 'plugin/markdown/marked.js',
        condition: function () {
          return !!document.querySelector('[data-markdown]');
        }
      }, {
        src: 'plugin/markdown/markdown.js',
        condition: function () {
          return !!document.querySelector('[data-markdown]');
        }
      }, {
        src: 'plugin/highlight/highlight.js',
        async: true,
        callback: function () {
          hljs.initHighlightingOnLoad();
        }
      }, {
        src: 'plugin/zoom-js/zoom.js',
        async: true,
        condition: function () {
          return !!document.body.classList;
        }
      }, {
        src: 'plugin/notes/notes.js',
        async: true,
        condition: function () {
          return !!document.body.classList;
        },
      }, 

{ src: 'socket.io/socket.io.js', async: true },
{ src: 'plugin/notes-server/client.js', async: true }

      ]
    });
  </script>
  </div>
  </div>
</body>
</html>

@jgn
Copy link

jgn commented Dec 14, 2014

Alright, here's the issue.

You really have to use Grunt. I suspect that people who are having this problem aren't using Grunt. With Grunt, it works. Without Grunt (I was using the Rack-based Ruby "serve" gem - https://github.com/jlong/serve), one has to make the slide divider the "rendered" separator (which happens to be <hr>).

Not sure how Grunt has the magic to do this right, but I guess I'll look into it.

@tlyim
Copy link

tlyim commented Dec 14, 2014

indeed, I used Grunt

@callahad
Copy link
Contributor

Haven't fully debugged, but I think this is a configuration issue. My own presentation to works just fine without using Grunt, yet @ocombe's test case does not work. Still digging...

@callahad
Copy link
Contributor

Oh, @ocombe's test actually works just great for me after renaming data-vertical to data-separator-vertical (per changes from 015468c, released in 3.0 on Jan 9, 2015).

I believe @rhhamburg correctly diagnosed the issue: if I switch my slides.md file between Unix and Windows line endings, it works (Unix) and fails (Windows).

Updating the regex to include an optional \r fixes it for me regardless of line endings: data-separator="^\r?\n----\r?\n$" data-separator-vertical="^\r?\n---\r?\n$"

Similarly, the following regex works with both line endings: data-separator="^----$" data-separator-vertical="^---$"

@callahad
Copy link
Contributor

@hakimel I suggest updating the DEFAULT_SLIDE_SEPARATOR in markdown.js line 29 with ^\r?\n---\r?\n$ (or just ^---$) and closing this as a configuration issue.

FWIW, in my own decks I use ^\s{0,3}-\s*-\s*-[-\s]*$ and ^\s{0,3}\*\s*\*\s*\*[\*\s]*$, which let me use a line of three or more hyphens or asterisks to indicate horizontal or vertical separations, respectively, which matches up nicely with Markdown's horizontal rule syntax.

hakimel added a commit that referenced this issue Mar 16, 2015
@hakimel
Copy link
Owner

hakimel commented Mar 16, 2015

@callahad Thanks for debugging this. I've updated the default slide separator regex as you suggested.

Closing.

@hakimel hakimel closed this as completed Mar 16, 2015
hrambelo pushed a commit to hrambelo/breizhCamp2015-slides that referenced this issue Aug 15, 2015
Squashed commit of the following:

commit 5f90a449cf1fa6edc93aaa4e69e6152c6096cd2e
Author: Hakim El Hattab <[email protected]>
Date:   Fri May 8 08:55:26 2015 +0200

    consider lazy loaded iframes when formatting src

commit e16a220a624cc3f9888ae59feebbd989669a7f31
Author: Hakim El Hattab <[email protected]>
Date:   Thu May 7 16:36:57 2015 +0200

    fix iframe unload in firefox

commit af270a909cdbf0de6edd25dfac4aeae0a58e8ab7
Author: Hakim El Hattab <[email protected]>
Date:   Thu May 7 10:09:50 2015 +0200

    iframe postmesssage api works with lazy loaded iframes

commit bf6a426cf29a675fb3d8f6e20376207bee10838f
Author: Hakim El Hattab <[email protected]>
Date:   Wed May 6 17:30:08 2015 +0200

    sync starts playing new embedded content

commit d14727b40747a032fe6f5aec89afea03e4bbb9cb
Author: Hakim El Hattab <[email protected]>
Date:   Wed May 6 11:28:21 2015 +0200

    type check to ensure we don't call media api before media has loaded

commit 207b0c71ede4a37ec06797802c22e7c5d61346f6
Author: Hakim El Hattab <[email protected]>
Date:   Wed May 6 11:25:50 2015 +0200

    fix lazy load selector error

commit e67dc9251a38d19cf588eb226d32a67f4d71c7d7
Author: Hakim El Hattab <[email protected]>
Date:   Wed May 6 11:02:41 2015 +0200

    tweak to iframe lazy load test

commit 3cd871eac0d1b737b344fc79fdafde22be848896
Author: Hakim El Hattab <[email protected]>
Date:   Mon May 4 21:08:41 2015 -0400

    typo

commit 7dd33f188fe14fd3cfa358aad523410d646c98fb
Author: Hakim El Hattab <[email protected]>
Date:   Mon May 4 20:58:58 2015 -0400

    lazy-load iframes only for current slide, unload when hidden

commit 152271efb26034c0fe8b898a5cad61939f542c99
Author: Hakim El Hattab <[email protected]>
Date:   Mon May 4 20:22:32 2015 -0400

    lazy loading fallback also considers iframes

commit 80e52c08e9e57dfa782bdb83123ad85a694467c0
Author: Hakim El Hattab <[email protected]>
Date:   Sun May 3 19:53:37 2015 -0400

    add test presentation for per-slide transitions, compile css #1106

commit 0f7b0dc22cb0178d97cc8360a4e33de8336474b1
Merge: bae8d96 420b691
Author: Hakim El Hattab <[email protected]>
Date:   Sun May 3 19:16:27 2015 -0400

    Merge branch 'master' of https://github.com/jammon/reveal.js into dev

commit bae8d968a220db87d1c5515e605a70cace6affb1
Author: Hakim El Hattab <[email protected]>
Date:   Mon Apr 13 21:38:03 2015 +0200

    change iframe example

commit 334cd3e52ba54f27448d74cca7b0cd55b84b3d32
Merge: 7f55e07 07197b1
Author: Hakim El Hattab <[email protected]>
Date:   Sun Apr 12 19:19:52 2015 +0200

    Merge branch 'master' of github.com:hakimel/reveal.js into dev

commit 07197b1eae80a264fd9ff7dc68316ae60e5ace29
Merge: 69bc0be e02f048
Author: Hakim El Hattab <[email protected]>
Date:   Sun Apr 12 19:19:12 2015 +0200

    Merge pull request #1162 from bobylito/master

    Make npm dependency usable by Browserify through npm

commit 7f55e07f85f69443e23fc3d46c55f44a75e29afe
Author: Hakim El Hattab <[email protected]>
Date:   Sun Apr 12 18:22:33 2015 +0200

    fix markdown test

commit 4e3b91ae03da5a82be4e221dae5c3aa45401359d
Author: Hakim El Hattab <[email protected]>
Date:   Sun Apr 12 18:12:48 2015 +0200

    remove 'roll-in' fragment style due to Chrome crash #1150

commit ce798c4bac877b534caeb94b29159ac51749a0ac
Author: Hakim El Hattab <[email protected]>
Date:   Sun Apr 12 17:20:07 2015 +0200

    update cssmin to 0.12.2 #1179

commit 404dd4e47719d16f55d36dd626fa12747549b2b4
Merge: a0cc104 69bc0be
Author: Hakim El Hattab <[email protected]>
Date:   Sun Apr 12 17:18:52 2015 +0200

    Merge branch 'master' of github.com:hakimel/reveal.js into dev

commit 69bc0be226f03c941268c5ebaad254d62e0b26d8
Merge: 8858ee7 3ec15e3
Author: Hakim El Hattab <[email protected]>
Date:   Sun Apr 12 17:11:12 2015 +0200

    Merge pull request #1180 from kayakr/patch-1

    typo

commit a0cc104a0c4e04e6cf862f39c949a54713b49c23
Merge: f24cbf8 4052389
Author: Hakim El Hattab <[email protected]>
Date:   Sun Apr 12 17:07:59 2015 +0200

    Merge branch 'query-params' of https://github.com/FND/reveal.js into dev

commit f24cbf8ad27b5973430978447c0d20ab38f1d2a6
Merge: ecc6222 ee1ecef
Author: Hakim El Hattab <[email protected]>
Date:   Sun Apr 12 17:05:06 2015 +0200

    Merge pull request #1193 from danielquinn/Firefox-friendly

    Added support for standard transforms

commit ee1ecef0e4823ab813224defcd8391ea252adfa1
Author: Daniel Quinn <[email protected]>
Date:   Fri Apr 3 12:26:40 2015 +0200

    Added support for standard transforms

    -webkit- stuff only works on webkit browsers.  I'm pretty sure that using the standard `transform:` here works in most modern browsers.

commit 4052389c58358e8d2ee6004a78c3179266cf0773
Author: FND <[email protected]>
Date:   Thu Apr 2 07:06:03 2015 +0200

    support query parameters within notes plugin

commit 3ec15e35b24a13a2f29fb925373c97fee378d672
Author: kayakr <[email protected]>
Date:   Thu Mar 26 16:56:45 2015 +1300

    Fix typo /s/configure/configured

commit ecc6222e7efc4781cc11402318b281f4211be806
Author: Hakim El Hattab <[email protected]>
Date:   Wed Mar 25 19:18:16 2015 +0100

    fix for #1150?

commit bbfdb3b66e081670f06fec1f6d6838d4591cdb61
Author: Hakim El Hattab <[email protected]>
Date:   Wed Mar 25 19:17:09 2015 +0100

    reset fragment transforms using 'none'

commit e19931ababbcbb416a3918f68b1f755a4bacaaff
Author: Hakim El Hattab <[email protected]>
Date:   Wed Mar 25 15:48:10 2015 +0100

    fix #1170

commit 70ab0ae80b37c077d3ba799b74bca613d049868c
Author: Hakim El Hattab <[email protected]>
Date:   Wed Mar 25 14:51:54 2015 +0100

    remove variable definitions #1158

commit 2999b628cfe625b1aa9e55d43e185dcef725a42a
Merge: 0428365 25c46cc
Author: Hakim El Hattab <[email protected]>
Date:   Wed Mar 25 14:39:24 2015 +0100

    Merge branch 'dev' of https://github.com/bchretien/reveal.js into dev

commit 04283650410045b8003cae6e52e73072e46952a3
Merge: e38b1d3 7a03e23
Author: Hakim El Hattab <[email protected]>
Date:   Wed Mar 25 14:16:12 2015 +0100

    Merge branch 'patch-1' of https://github.com/drzax/reveal.js into dev

commit e38b1d38f874e7afbdc4e5b6aeb74f492dc9e9ba
Merge: 868d3b1 dfb39b4
Author: Hakim El Hattab <[email protected]>
Date:   Wed Mar 25 14:02:22 2015 +0100

    Merge pull request #1166 from callahad/update-marked

    update marked to 0.3.3

commit 868d3b1a9f05d32ef6bd92cc5534928b80634fb0
Merge: 60457d2 41cf154
Author: Hakim El Hattab <[email protected]>
Date:   Wed Mar 25 14:00:26 2015 +0100

    Merge branch 'patch-1' of https://github.com/borrown/reveal.js into dev

commit 60457d21b437b66f6bab41ed0ae99391b3946376
Author: Hakim El Hattab <[email protected]>
Date:   Wed Mar 25 13:57:00 2015 +0100

    alt+zoom only works on slide content #1151

commit 41cf154a605db67d0845e74ca021d6ac171cb64b
Author: Alexander <[email protected]>
Date:   Thu Mar 19 11:49:19 2015 +0800

    Update reveal.js

commit 7a03e238f07381376cb8296379524767f11accfb
Author: Simon Elvery <[email protected]>
Date:   Mon Mar 16 20:44:23 2015 +1000

    Attribute values should be quoted

commit dfb39b4c96d86ebabc63bcae22a74afa99af66ca
Author: Dan Callahan <[email protected]>
Date:   Mon Mar 16 03:11:34 2015 -0500

    Bumped Marked to v0.3.3

    Compressed with `uglifyjs lib/marked.js --comments="/Copyright/" --mangle --compress`

    Used Marked v0.3.3 as of chjj/marked@2b5802f258c5e23e48366f2377fbb4c807f47658

commit 7baa8ec1fe2cd0d09ee6c034e6ebd7a07ee317c4
Author: Hakim El Hattab <[email protected]>
Date:   Mon Mar 16 08:54:58 2015 +0100

    updated md slide separator regex #929

    see https://github.com/hakimel/reveal.js/issues/929#issuecomment-80738837

commit e02f0488bb052c9bc83bb8fbb8d07ed6f0c7b2d2
Author: Alexandre Stanislawski <[email protected]>
Date:   Sat Mar 14 20:05:05 2015 +0100

    Make npm dependency usable by Browserify through NPM

    Right now the package is not recognized as usable library by Browserify.
    Adding the main attribute in the package.json solves that, and now gives
    others the possibility to use reveal as a library in more complex
    systems.

commit 381adb0d1da67147f9ee7de4bd28232a57de6f0a
Merge: bcec81e 8858ee7
Author: Hakim El Hattab <[email protected]>
Date:   Fri Mar 13 10:06:06 2015 +0100

    Merge branch 'master' of github.com:hakimel/reveal.js into dev

commit 8858ee75a5b5a74c4ed102555c7baaa0f5d29ecd
Author: Hakim El Hattab <[email protected]>
Date:   Fri Mar 13 10:05:41 2015 +0100

    note about plugins

commit bcec81efbbf5fa8f4b7acdbabb0c1927c9cc7916
Merge: 4677741 23ec0d0
Author: Hakim El Hattab <[email protected]>
Date:   Fri Mar 13 08:21:07 2015 +0100

    Merge branch 'master' of github.com:hakimel/reveal.js into dev

commit 23ec0d083bed2889cc4f79ba2c33138bafba5ebb
Author: Hakim El Hattab <[email protected]>
Date:   Fri Mar 13 08:19:15 2015 +0100

    link to plugins

commit 25c46ccc37f932c04d5c2af7de1d12c6cdaed055
Author: Benjamin Chrétien <[email protected]>
Date:   Sun Mar 8 18:11:01 2015 +0100

    Fix slide numbering for custom slide number formatting.

    Numbering was off when dealing with fragments.

commit 46777415681e6e3622046d175491c4af7b65e363
Author: Hakim El Hattab <[email protected]>
Date:   Thu Mar 5 10:49:21 2015 +0100

    remove selection color from core css

commit c200fbedd1b7983fce86a6b1187a4da8ffdb48b7
Author: Hakim El Hattab <[email protected]>
Date:   Mon Mar 2 12:28:47 2015 +0100

    add blood theme to demo slides #928

commit ecc8c7858457450452b5f3bc59b80b3f131d36bc
Author: Hakim El Hattab <[email protected]>
Date:   Mon Mar 2 12:27:15 2015 +0100

    tweaks to blood theme

commit 364a3f9845a41f72c399ca1b602a4f96281965af
Author: Hakim El Hattab <[email protected]>
Date:   Mon Mar 2 12:11:05 2015 +0100

    code format

commit fc568b552429ce97bcc98aa0b021c4242c558e9e
Merge: b457479 76c5726
Author: Hakim El Hattab <[email protected]>
Date:   Mon Mar 2 12:10:26 2015 +0100

    Merge branch 'patch-1' of https://github.com/jhofker/reveal.js into dev

commit b4574791e0b63a128fef450be5cd8d8c103ae1f4
Author: Hakim El Hattab <[email protected]>
Date:   Mon Mar 2 12:08:21 2015 +0100

    fix mixed spaces/tabs

commit 3ead7d4eb573b7c9ef75dc00926ac63bad873e23
Author: Christian Fehmer <[email protected]>
Date:   Sat Feb 28 19:15:14 2015 +0100

    Markdown table column alignment #1050

    The alignment information were already in the generated html.
    The css was the only thing missing, so I added it.

commit 04e38c8c07ed11dec074b255d449b289704f49be
Merge: ce8ea84 2dccc25
Author: Hakim El Hattab <[email protected]>
Date:   Wed Feb 25 15:53:39 2015 +0100

    Merge pull request #1113 from brndnb/patch-1

    grammar

commit 53b9dbc65431882b9f316b4fbfe5d6cece928ad1
Author: Hakim El Hattab <[email protected]>
Date:   Wed Feb 25 15:52:10 2015 +0100

    code format

commit a245a87e381b81168e730a6b4bf3d224b8931606
Merge: 22a5ec5 00fa1c8
Author: Hakim El Hattab <[email protected]>
Date:   Wed Feb 25 15:48:48 2015 +0100

    Merge pull request #1138 from denehyg/background-video-loop

    background video loop

commit 22a5ec5e3b2473da15a9d5b22ae6a513101d5ff9
Merge: bf8a627 ce8ea84
Author: Hakim El Hattab <[email protected]>
Date:   Wed Feb 25 15:42:47 2015 +0100

    merge conflict

commit bf8a6271d4dfc7cd6e68e01583c927b5f5730d62
Author: Hakim El Hattab <[email protected]>
Date:   Wed Feb 25 15:35:30 2015 +0100

    fix mixed indentation

commit f772c7eb508cb1373d509d8cfea3b89984290ae9
Author: Hakim El Hattab <[email protected]>
Date:   Wed Feb 25 13:31:41 2015 +0100

    fix progress bar clicks in rtl mode #1131

commit ea735f0a2f4983a54bed94e2ce83f6ebe297a225
Author: Hakim El Hattab <[email protected]>
Date:   Wed Feb 25 13:26:45 2015 +0100

    ensure postmessage data is a string #1143

commit 4c0a033dfa452cfef5d880131a9685a918a29945
Merge: 2ed1d6f 0605ab1
Author: Hakim El Hattab <[email protected]>
Date:   Wed Feb 25 12:10:00 2015 +0100

    merge options for parallax step size #733

commit 76c5726c040000a6d8ae3122681b3afb5e309c85
Author: Jordan Hofker <[email protected]>
Date:   Thu Feb 19 16:09:08 2015 -0600

    Check before calling blur on activeElement.

    It's possible for slides to be in a situation where the last clicked thing was an SVG before the tab/window loses focus. When returning, `.blur()` is called on the previously-active element, but can result in an exception.

    This protects against that and will only call `.blur()` when `document.activeElement` supports it.

commit 00fa1c818dc5806297c3ab3ec68abc13911774d1
Author: Greg Denehy <[email protected]>
Date:   Thu Feb 19 17:04:41 2015 +1030

    Added option to loop background videos

commit 2ed1d6fb5dd7aa24918342197554fd7a6fbf6797
Author: Hakim El Hattab <[email protected]>
Date:   Mon Feb 9 09:35:05 2015 +0100

    fix looped view distance calculation

commit a4852c7cb2a5792d0ead3ee59435371225755dea
Author: Hakim El Hattab <[email protected]>
Date:   Tue Feb 3 11:56:54 2015 +0100

    prevent iframes from offsetting presentation

commit 1c8a6e47a6374332caeb62ae84ca109ec59be54a
Author: Hakim El Hattab <[email protected]>
Date:   Mon Feb 2 09:14:09 2015 +0100

    only preload last slides if presentation is looped

commit 49f462e6ce329b9c569d4735ab617ac07385b17b
Author: Hakim El Hattab <[email protected]>
Date:   Fri Jan 30 10:52:28 2015 +0100

    gifs now restart when their slide container is shown

commit 621e8d71764cf19f329da3757caaa6f62fe2dbf2
Author: Hakim El Hattab <[email protected]>
Date:   Thu Jan 29 17:08:28 2015 +0100

    only transition slides container in overview mode

commit 03400478bd004eb9ef1fe0db96eac13f336e4ab2
Merge: 3b45b61 8e66876
Author: Hakim El Hattab <[email protected]>
Date:   Thu Jan 29 14:53:06 2015 +0100

    Merge pull request #1119 from hakimel/feature/new-overview

    Refactored overview mode

commit 8e66876c4e5881d3a85516e0070094bc8b0d8b9f
Author: Hakim El Hattab <[email protected]>
Date:   Thu Jan 29 12:21:05 2015 +0100

    fix error when exiting overview

commit c8d7451142520c3999335e5ca958d27402071f30
Author: Hakim El Hattab <[email protected]>
Date:   Thu Jan 29 12:03:02 2015 +0100

    comments

commit 18e29a898af3fb2d412320ab0c784dfc46bf2a06
Author: Hakim El Hattab <[email protected]>
Date:   Thu Jan 29 11:59:47 2015 +0100

    cleaner approach to applying transforms to slides container

commit 3b45b618b8f2f3c757a4c4645a381791ece71da8
Author: Hakim El Hattab <[email protected]>
Date:   Wed Jan 28 08:52:15 2015 +0100

    dynamic file mapping to avoid themes hardcoded in gruntfile

commit df3852487470bbba55009404769e4c34b700c448
Author: Hakim El Hattab <[email protected]>
Date:   Wed Jan 28 08:45:38 2015 +0100

    theme readme update

commit 64e72781b4d576a2a32e7c4b3e1692d03a182c7d
Author: Hakim El Hattab <[email protected]>
Date:   Wed Jan 28 08:33:50 2015 +0100

    ensure overview indices are up to date if a slide moves

commit c8569e2d9ff675b806e5d5bf94ba1a07d121e74b
Author: Hakim El Hattab <[email protected]>
Date:   Tue Jan 27 19:27:55 2015 +0100

    cross browser adjustments for overview mode

commit e29c706533c227682cfde1ac0b187e90738b9bbc
Author: Hakim El Hattab <[email protected]>
Date:   Tue Jan 27 09:21:49 2015 +0100

    further overview refactoring

commit 11293d7c9415862007dbc1e3936b0fcbf4626da1
Author: Hakim El Hattab <[email protected]>
Date:   Mon Jan 26 20:38:21 2015 +0100

    refactoring and optimization of overview mode

commit ce8ea8439305913a9be6322fcd445814c521e724
Merge: 9a89e39 e296b39
Author: Hakim El Hattab <[email protected]>
Date:   Mon Jan 26 19:22:44 2015 +0100

    Merge pull request #1115 from raboof/patch-1

    themes grunt task was renamed

commit e296b396574e0b206187440650256c76e242d93f
Author: Arnout Engelen <[email protected]>
Date:   Mon Jan 26 18:56:03 2015 +0100

    Grunt target was renamed

commit 2dccc2503123535bca16973f0a69d98d00d04f69
Author: Branden Byers <[email protected]>
Date:   Thu Jan 22 08:05:20 2015 -0600

    Fix small typo

commit 44548ba357490943cfa6a2e5139863bd4fc4f66a
Author: Hakim El Hattab <[email protected]>
Date:   Thu Jan 22 08:46:14 2015 +0100

    add global flag back in for whitespace removal, without it most of the content in example.html does not work #682

commit f032df8f135040b27cfb77f24d56401543ce2add
Author: Hakim El Hattab <[email protected]>
Date:   Tue Jan 20 09:11:09 2015 +0100

    default to https mathjax #1103

commit 9e14b261eafc007c257d64bab5a0df270067b59c
Author: Hakim El Hattab <[email protected]>
Date:   Mon Jan 19 08:41:26 2015 +0100

    fix for #1088 when presentation is not scaled

commit 420b6912d7ef004f3ced3cb89d95abf7a9ed1274
Author: Johannes Ammon <[email protected]>
Date:   Sun Jan 18 18:12:36 2015 +0100

    Adding one-sided transitions

    Now the transition isn’t any more „per slide“ but „per movement of a
    slide“. So the slide can disappear in another way than it appeared.

commit 95bba5179fa422ec8bd3934a67929053b41ac5d8
Author: Johannes Ammon <[email protected]>
Date:   Sun Jan 18 10:55:05 2015 +0100

    Mixins for readability of transitions added

    To honor the DRY principle repeating patterns have been factored out.
    In addition there was an anchor missing in README.md.

commit e0aba9f5aec9d1bea9f1b1729d5f6022e412196c
Author: Hakim El Hattab <[email protected]>
Date:   Sat Jan 17 10:33:18 2015 +0100

    apply z position to slide container, rather than individual slides

commit 66d7b6bfae8d14611c2c10c81412668d0eb8a3ed
Author: Hakim El Hattab <[email protected]>
Date:   Fri Jan 16 16:46:34 2015 +0100

    firefox support for #1088

commit 99d92362c8e50e81554610b18a2f5a4f76491e0f
Author: Hakim El Hattab <[email protected]>
Date:   Fri Jan 16 16:15:28 2015 +0100

    no longer set o-transforms

commit b71705c76ff867ac2601d17cec4228ca3b1d5870
Author: Hakim El Hattab <[email protected]>
Date:   Fri Jan 16 16:12:54 2015 +0100

    background images now work in overview mode #1088

commit 5fb81b1b3cb058f3a9bbd5f190a12e44b47b8df2
Author: Hakim El Hattab <[email protected]>
Date:   Fri Jan 16 13:48:13 2015 +0100

    support for custom slide number formatting #965

commit 817bb3bf43879009ae445e52d4b6ef88053c5583
Author: Hakim El Hattab <[email protected]>
Date:   Thu Jan 15 11:25:20 2015 +0100

    use getElementByID when looking up linked slides #1086

commit 9a89e39367dda0d39a618c9672df59b95b7eb3a8
Author: Hakim El Hattab <[email protected]>
Date:   Wed Jan 14 17:01:28 2015 +0100

    only read textContent for aria callout #1100

commit 5359da0b06e92b52406d69a0feec01803f7118f4
Author: Hakim El Hattab <[email protected]>
Date:   Mon Jan 12 17:50:12 2015 +0100

    documentation for getState/setState

commit 04b71f577ca6c7a6960145cb89bd5d41feeba1fd
Author: Hakim El Hattab <[email protected]>
Date:   Mon Jan 12 12:33:39 2015 +0100

    documentation for postMessage API

commit 20d858deb888fe0ec0ba92a919c8a0526ac52a2e
Merge: 57977e2 3a8fc9b
Author: Hakim El Hattab <[email protected]>
Date:   Fri Jan 9 18:22:30 2015 +0100

    Merge pull request #1093 from hakimel/dev

    3.0.0

commit 3a8fc9b2742756be2274c8c74f77dbed84407d92
Author: Hakim El Hattab <[email protected]>
Date:   Fri Jan 9 18:14:03 2015 +0100

    content tweak

commit 3b93c8be337b94e9f5629a3660fea3bb6f69be09
Author: Hakim El Hattab <[email protected]>
Date:   Thu Jan 8 09:58:06 2015 +0100

    content tweaks

commit 06ad3bf4c2692baf758c9ed3bd4b3bb8be1940c1
Author: Hakim El Hattab <[email protected]>
Date:   Tue Jan 6 17:36:53 2015 +0100

    reorganize fonts, include source sans pro for offline use

commit 40f12acf2dc2996ab8db81f474e8903364e94d87
Author: Hakim El Hattab <[email protected]>
Date:   Tue Jan 6 12:49:52 2015 +0100

    always play background video from the start #1049

commit 4cee280e36294efce8e35fc2198847397190c0ac
Merge: 028c844 57977e2
Author: Hakim El Hattab <[email protected]>
Date:   Tue Jan 6 12:44:42 2015 +0100

    merge master into dev

commit 028c84481afff6fa4198663e692cfb6d83bb9dc2
Author: Hakim El Hattab <[email protected]>
Date:   Tue Jan 6 12:35:00 2015 +0100

    revise contribution guidelines, graduate 3.0 from dev

commit dbcb44c298aa276af144efc17347afc88c127ff9
Author: Hakim El Hattab <[email protected]>
Date:   Tue Jan 6 12:22:05 2015 +0100

    dont subset league glyphs #989

commit 16d4ce649754f4b9d136bc76391956f35ce36b03
Author: Hakim El Hattab <[email protected]>
Date:   Tue Jan 6 12:03:56 2015 +0100

    new slideshare pdf example

commit 25a674a3c2de34fe9a51e0d954d198dd419268ae
Author: Hakim El Hattab <[email protected]>
Date:   Tue Jan 6 11:42:23 2015 +0100

    new font & type settings for default theme

commit 21d034bffebc971b6ee75a07f59977db1f81dd74
Author: Hakim El Hattab <[email protected]>
Date:   Tue Jan 6 09:32:21 2015 +0100

    reveal container size determines progress bar width

commit 0e0a4ec6e6e5996c6619ec6ff5452c3017e1ca27
Author: Hakim El Hattab <[email protected]>
Date:   Mon Jan 5 09:51:36 2015 +0100

    avoid repetition

commit 9c3a7b49d0c9f39d6f65b9af4a90a5c3ff782343
Author: Hakim El Hattab <[email protected]>
Date:   Mon Jan 5 09:40:53 2015 +0100

    (c) 2015

commit 5bdbc2dc7b4c957f6df6540bdccc29e00c2e49a3
Author: Hakim El Hattab <[email protected]>
Date:   Sat Dec 27 21:27:53 2014 +0100

    remove deprecated data-state background colors

commit 2cfe1174f1359b5a4378b003ca032b4929f02ba3
Author: Hakim El Hattab <[email protected]>
Date:   Sat Dec 27 21:22:17 2014 +0100

    kill unintended transition into overview mode

commit abf402d044948893d77194988ca6504661e7f3df
Author: Hakim El Hattab <[email protected]>
Date:   Sat Dec 27 21:16:54 2014 +0100

    change transition defaults

commit 9dbc9e77199e4848a30b3216bbee64e83048aa8a
Author: Hakim El Hattab <[email protected]>
Date:   Sat Dec 27 21:16:44 2014 +0100

    tweak comments

commit 327ff7a75cf579a224164dbc29625bd6bc89a4d6
Author: Hakim El Hattab <[email protected]>
Date:   Thu Dec 18 18:33:26 2014 +0100

    readme tweaks

commit d4bdf29c813f27681f76de0d101fd7cb0e7b232e
Author: Hakim El Hattab <[email protected]>
Date:   Thu Dec 18 18:27:48 2014 +0100

    new pdf export example

commit 3b1e1a04b87194b240dc44943202a28eccd54139
Author: Hakim El Hattab <[email protected]>
Date:   Thu Dec 18 18:17:31 2014 +0100

    white theme inverts text color against dark bg

commit 1bc1dd12e6671a811abba0397fc7402b7bac07ef
Author: Hakim El Hattab <[email protected]>
Date:   Thu Dec 18 17:53:08 2014 +0100

    bad theme name

commit 7c03d6018617a3430ae10fd855467175ad17c096
Author: Hakim El Hattab <[email protected]>
Date:   Thu Dec 18 17:45:51 2014 +0100

    remove theme config option #1061

commit c3f9aabe04660af9aad07ec47f559d52d215b742
Author: Hakim El Hattab <[email protected]>
Date:   Thu Dec 18 17:29:51 2014 +0100

    add white theme, reverse of default theme #1018

commit 96b26514e6d397aba6b39589d510548ddb281fb8
Author: Hakim El Hattab <[email protected]>
Date:   Fri Dec 12 15:52:25 2014 +0100

    default content update; remove image slide, add two new slides

commit b133468f3e02588230412c3a48624f3838bf9e7a
Author: Hakim El Hattab <[email protected]>
Date:   Wed Dec 10 20:18:11 2014 +0100

    include background video example in default presentation

commit 8524af73f678e1a135ab83290bea19edf1f7f50e
Author: Hakim El Hattab <[email protected]>
Date:   Wed Dec 10 20:09:03 2014 +0100

    zoom plugin now works for scaled presentations

commit dc215a244174b88587ca032a68c172010235d154
Author: Hakim El Hattab <[email protected]>
Date:   Wed Dec 10 18:28:14 2014 +0100

    rename previous default theme to league

commit 05403bcf16e44863e97af776cc566e75f570eef7
Author: Hakim El Hattab <[email protected]>
Date:   Wed Dec 10 18:18:57 2014 +0100

    first revision of new default theme #1018

commit ad9e93eae5850b7cd8513b4040e0b1b144a2f275
Author: Hakim El Hattab <[email protected]>
Date:   Tue Dec 9 15:06:25 2014 +0100

    dont force links to be underlined in pdf

commit 8c76f85e34564e8fa2d38f2c2424ed4edc6d6c74
Author: Hakim El Hattab <[email protected]>
Date:   Sat Nov 8 09:06:17 2014 +0100

    reorder scale condition; if calculated scale is exactly 1 don't apply any scale styles

commit 57977e29239a1115ddfd673fc24f86080203f6d7
Merge: 6565ba0 9e4d0a3
Author: Hakim El Hattab <[email protected]>
Date:   Thu Nov 6 19:42:08 2014 +0100

    Merge pull request #1033 from PeterDaveHello/patch-1

    ci status indicator is svg instead of png

commit 54e44ef4e20029da95bd34e26fd640f4b7ed5809
Author: Hakim El Hattab <[email protected]>
Date:   Thu Nov 6 19:19:14 2014 +0100

    add missing condition for recalculating scale

commit 96b1ee9c39cc3dbffb704b34215775c91ce402c8
Author: Hakim El Hattab <[email protected]>
Date:   Wed Nov 5 19:28:09 2014 +0100

    ignore calculating scale if only possible outcome is 1

commit 3126db0a460dcfa4bf7b51555180263c6e8832dd
Author: Hakim El Hattab <[email protected]>
Date:   Wed Nov 5 12:54:00 2014 +0100

    update order of default slides

commit d84233df98e92b08004d427da2ec9c0887ac4fef
Author: Hakim El Hattab <[email protected]>
Date:   Wed Nov 5 12:28:09 2014 +0100

    default to slide transitions

commit 1aaec8574481e870e12e48611400291501fc2157
Author: Hakim El Hattab <[email protected]>
Date:   Wed Nov 5 12:27:57 2014 +0100

    update background color/image example slides

commit 1f0627eb3fe0d5494b9de2fd7ff911f23bf45d98
Author: Hakim El Hattab <[email protected]>
Date:   Wed Nov 5 11:54:49 2014 +0100

    typo

commit b09923551a0ba95fac3631f992793e44d71f474f
Author: Hakim El Hattab <[email protected]>
Date:   Wed Nov 5 11:52:32 2014 +0100

    theme updates, normalized spacing between block-level elements

commit a170ee898289d3d6218b247b9bff2cc584946ca8
Author: Hakim El Hattab <[email protected]>
Date:   Wed Nov 5 10:38:43 2014 +0100

    simplify default initialization options

commit a5e4fcb83919868ff3bfd64c85e6c6b02951cbcf
Merge: 6c8becc 82a692c
Author: Hakim El Hattab <[email protected]>
Date:   Wed Nov 5 10:00:43 2014 +0100

    Merge pull request #1037 from Suva/dev

    Do not add video backgrounds to speaker notes.

commit 82a692c394e894d603590789ab92893807ed71b7
Author: Jaan Pullerits <[email protected]>
Date:   Fri Oct 24 12:35:49 2014 +0000

    Do not add video backgrounds to speaker notes.

commit 9e4d0a32609919f28fd37825f7c62fc9ca96f7da
Author: Peter Dave Hello <[email protected]>
Date:   Tue Oct 21 13:04:02 2014 +0800

    Use svg instead of png to get better image quality

commit 6c8becc51b9cc1ef5078af0a92ea5161244458eb
Author: Hakim El Hattab <[email protected]>
Date:   Fri Oct 17 09:02:07 2014 +0200

    add video and iframe backgrounds to readme

commit 16f9e95d87b1a5cede29490d9a1822fce5769ffe
Author: Hakim El Hattab <[email protected]>
Date:   Fri Oct 17 08:52:38 2014 +0200

    update slide bg example presentation to include iframes and videos #1029

commit fa88707382a79467f9c315e307b445219036461d
Merge: 8234267 490ae90
Author: Hakim El Hattab <[email protected]>
Date:   Fri Oct 17 08:43:11 2014 +0200

    Merge branch 'feature/background-iframe' of https://github.com/lutangar/reveal.js into dev

commit 82342672ea09ed46580b25bd2d137f056d5faaa0
Author: Hakim El Hattab <[email protected]>
Date:   Thu Oct 16 16:17:41 2014 +0200

    fix navigatePrev in rtl mode #1030

commit 6c7ba34edf1dfff171fa808ff15796c2dac13b1c
Merge: eec72c1 ccdb4ff
Author: Hakim El Hattab <[email protected]>
Date:   Thu Oct 16 15:43:29 2014 +0200

    remove styles from #1030, simplify navigatePrev

commit eec72c1491cda1c42ed8b3c40959892755aa2e93
Author: Hakim El Hattab <[email protected]>
Date:   Thu Oct 16 13:50:50 2014 +0200

    update grunt connect for more hostname flexibility #981

commit 1f5369a43ec9d690298c633fcb6c0d595bb1ca04
Author: Hakim El Hattab <[email protected]>
Date:   Thu Oct 16 13:35:47 2014 +0200

    correct defaults for min-height, thanks @sebastianz #985

commit 136d27936141586ddd16e78a3bfa44f2ea2f25fb
Author: Hakim El Hattab <[email protected]>
Date:   Thu Oct 16 13:27:58 2014 +0200

    continue auto-sliding through fragments on last slide #974

commit cef19486b89ed7d101acfc1992af2e49e88c371d
Author: Hakim El Hattab <[email protected]>
Date:   Thu Oct 16 13:09:54 2014 +0200

    better handling of overflowing speaker notes #1017

commit 5123ba437205fdf52a6478553805b3d4939adc44
Author: Hakim El Hattab <[email protected]>
Date:   Thu Oct 16 12:21:16 2014 +0200

    update grunt-qunit

commit a61a372b5215fbdf1fa3bab5a4c21ca511bfbe07
Author: Hakim El Hattab <[email protected]>
Date:   Thu Oct 16 12:19:20 2014 +0200

    use nesting for fragment styles

commit ccdb4ff248c9883c3f2e922e243ec426a918bfcb
Author: Ira Abramov <[email protected]>
Date:   Sat Oct 11 18:59:36 2014 +0300

    Fix RTL Navigation with space bar

commit 490ae90de40b87509b260e44dae4104ac54f8b28
Author: lutangar <[email protected]>
Date:   Thu Oct 9 12:34:10 2014 +0200

    add support for iframe backgrounds

commit 6565ba016807ba5c6c44efde5ce40613ed39c845
Author: Hakim El Hattab <[email protected]>
Date:   Mon Oct 6 10:00:52 2014 +0200

    use node.js 0.10

commit a3a2ad039ee2e74ad01a8c923c7549a35712f85d
Author: Hakim El Hattab <[email protected]>
Date:   Mon Oct 6 09:51:12 2014 +0200

    reduce grunt task overhead

commit cc02564b2ff81580e55c23fba859b02bc3bd2697
Merge: 588472c 9bc5b81
Author: Hakim El Hattab <[email protected]>
Date:   Mon Oct 6 09:41:29 2014 +0200

    reveal.css is now scss, merge autoprexier #1007

commit 6729b9ba76131cdb7a8d9b5eca4b521cc20138ac
Merge: 76c587b 131c006
Author: Hakim El Hattab <[email protected]>
Date:   Sat Oct 4 09:04:35 2014 +0200

    Merge branch 'master' of github.com:hakimel/reveal.js

commit 76c587b7e36e5a4a35ab8fd38d05f81c83a7ea43
Author: Hakim El Hattab <[email protected]>
Date:   Sat Oct 4 09:04:22 2014 +0200

    add contribution guidelines from dev

commit 588472c5204a1a55db7b99627c4ac4477117ad37
Author: Hakim El Hattab <[email protected]>
Date:   Sat Oct 4 09:00:57 2014 +0200

    compile themes

commit a34fa7599564498c0f976a026479307fb7c51816
Merge: f28b380 9ae36e9
Author: Hakim El Hattab <[email protected]>
Date:   Sat Oct 4 09:00:45 2014 +0200

    merge #975 into dev

commit f28b380fac76583c1572c82abc229b49f54dc2fc
Author: Hakim El Hattab <[email protected]>
Date:   Sun Sep 28 17:13:49 2014 +0200

    prevent auto-sliding in notes frames #1004

commit 05e55b2f811b50079ffc18e4e39ee488d10bb099
Author: Hakim El Hattab <[email protected]>
Date:   Sun Sep 28 17:13:26 2014 +0200

    minor copy tweak

commit e7b9e95369c36ba50212d2d5d913d9043318c18b
Author: Hakim El Hattab <[email protected]>
Date:   Sun Sep 28 13:05:53 2014 +0200

    remove classList condition from unrelated dependencies

commit 36cdaefdfd5e0f6111f111dea8acdc81d95cc790
Author: Hakim El Hattab <[email protected]>
Date:   Sun Sep 28 12:48:37 2014 +0200

    multiple updates to default presentation content

commit 0345696ed6efa235f920d6b0a73de5644a831fea
Author: Hakim El Hattab <[email protected]>
Date:   Sun Sep 28 12:27:48 2014 +0200

    remove css 3d warning

commit bd176411ef7fa4b584af5deef538ab8f63f43746
Author: Hakim El Hattab <[email protected]>
Date:   Sun Sep 28 12:14:48 2014 +0200

    style tweaks for all themes; larger line heights, no default adjustmetn to letter-spacing

commit 9ef0060024a428e2bbfa237f2632e2defe4a5ec3
Author: Hakim El Hattab <[email protected]>
Date:   Sun Sep 28 11:17:16 2014 +0200

    add new black theme

commit 0aad39f75532b17bff72cbad38794d536406e8b9
Author: Hakim El Hattab <[email protected]>
Date:   Sat Sep 27 16:19:39 2014 +0200

    dont open notes when S is pressed inside of notes window #991

commit 9bc5b81292619ef06e9a582a7607b7e0601d7c17
Merge: 2bc36f2 80c375f
Author: Yves Delley <[email protected]>
Date:   Fri Sep 12 22:49:13 2014 +0200

    merged dev branch

commit 2bc36f2dfe04746d5a10c48531b38c64415d43aa
Author: Yves Delley <[email protected]>
Date:   Fri Sep 12 22:37:57 2014 +0200

    re-created unprefixed version of reveal.css automatically using autoprefixer, to facilitate merging of changes to it

commit 80fc214af1b93ba83c385c92df7806dfd98927c6
Author: Hakim El Hattab <[email protected]>
Date:   Thu Sep 11 11:37:32 2014 +0200

    update highlight.js to 8.2

commit 03c3031cb4de22f2cd8070547c2bb8085d435c69
Author: Hakim El Hattab <[email protected]>
Date:   Wed Sep 10 11:28:29 2014 +0200

    cleanup classes when backgrounds are synced

commit 0d14d87f1a039584eaa5c9720b30b154e6b2e10e
Author: Hakim El Hattab <[email protected]>
Date:   Wed Sep 10 10:53:24 2014 +0200

    rgba color parsing support, ignore brightness of transparent colors

commit 41f20301b6a634003ed89f222f5fe1995ca29ce5
Author: Hakim El Hattab <[email protected]>
Date:   Wed Sep 10 10:12:25 2014 +0200

    has-dark-background

commit bc2974fef879a273fa5600b9b2e7d1481ebe8afd
Author: Hakim El Hattab <[email protected]>
Date:   Tue Sep 9 17:51:36 2014 +0200

    bubble has-light-background to .reveal container

commit 2479883d3cdec0a810f95e4fe80696877e5ae227
Author: Hakim El Hattab <[email protected]>
Date:   Tue Sep 9 17:33:52 2014 +0200

    is-light-background -> has-light-background, doesn't apply to background itself

commit 5e585ddbf2f3f9514f1db11ccb250eca02fb6878
Author: Hakim El Hattab <[email protected]>
Date:   Tue Sep 9 17:21:29 2014 +0200

    update slide backgrounds example

commit 9fb0c5f3d3df1b207c444114a3ea0a6dc909cde4
Author: Hakim El Hattab <[email protected]>
Date:   Tue Sep 9 17:18:15 2014 +0200

    use computed style when calculating bg birghtness

commit 20e72df4bf3f284604e15c6384983055b3641baa
Author: Hakim El Hattab <[email protected]>
Date:   Tue Sep 9 16:50:23 2014 +0200

    add is-background-light class to slides/backgrounds that are > 128 brightness

commit 8a50a46665b699236920dd7f0aca74beb3fb0077
Author: Hakim El Hattab <[email protected]>
Date:   Tue Sep 9 16:14:24 2014 +0200

    util methods for calculating color brightness

commit 4823b267ccecd24a0102be834b3ffdfab5fe2730
Author: Hakim El Hattab <[email protected]>
Date:   Tue Sep 9 12:42:11 2014 +0200

    better test for fragment indices

commit cbef64b860e75e010a383543de3c5f478fc4227a
Author: Hakim El Hattab <[email protected]>
Date:   Sat Sep 6 08:20:38 2014 +0200

    fix current fragment index check when multiple fragments have same index

commit 7fe762c2f3d53e1a7dc457f8269105208230f399
Author: Yves Delley <[email protected]>
Date:   Fri Sep 5 17:43:02 2014 +0200

    -

commit 03d8a02f68ae8a89bcbf8cd8517a02faed3e8d12
Author: Yves Delley <[email protected]>
Date:   Fri Sep 5 17:42:38 2014 +0200

    added newly generated reveal.min.css

commit 4c155128c79b3c810f5413638af9c84083bde21b
Author: Yves Delley <[email protected]>
Date:   Fri Sep 5 17:41:56 2014 +0200

    removed all vendor-prefixes from reveal.css

commit 2cd988a7a347ddad39b4315b2f63e7c1105ecd19
Author: Hakim El Hattab <[email protected]>
Date:   Thu Sep 4 18:00:21 2014 +0200

    fix previewLinks target

commit 80c375fae85d5b1edc2656641e03942739daa28b
Author: Hakim El Hattab <[email protected]>
Date:   Tue Aug 12 16:01:27 2014 +0200

    the paused mode can now be disabled via the 'pause' config option

commit 841f9d0f9bb766b8dc67c7f2fa3c25a2555a8f19
Author: Hakim El Hattab <[email protected]>
Date:   Tue Jul 22 10:30:26 2014 +0200

    only load highlight.js if there's a 'pre code' block on page

commit 062918b5e2b3d01d842500425853782b08905596
Author: Hakim El Hattab <[email protected]>
Date:   Tue Jul 22 10:29:00 2014 +0200

    update highlight.js to 8.1

commit 9ae36e9d0fc1c5f1c617fd0b08ea075858b17f88
Author: miira <[email protected]>
Date:   Fri Jul 18 14:04:04 2014 +0200

    Update package.json

commit ff5a3dc8c730de577e119997b9de2ff6289dfb28
Author: Miroslav Mocek <[email protected]>
Date:   Thu Jul 17 17:11:22 2014 +0200

    removed ruby dependency.

commit 57844ad827523be8ca8992837a5a591c472d77a7
Author: Hakim El Hattab <[email protected]>
Date:   Sun Jul 6 14:31:10 2014 +0200

    listen for touch + click on all devices except android

commit 213c8d13541f3ac4c68098a6528d1bdcc716ab32
Author: Hakim El Hattab <[email protected]>
Date:   Sat Jun 28 12:58:33 2014 +0200

    fix double-navigation on touch for some android systems

commit 7e8fd09376a75ac793bbea4efff30d5056fea559
Author: Hakim El Hattab <[email protected]>
Date:   Wed Jun 25 13:56:24 2014 +0200

    fix npe

commit ef333300a20b7412176525e542b5fd61ef776e94
Author: Hakim El Hattab <[email protected]>
Date:   Wed Jun 25 11:50:31 2014 +0200

    prevent additional inaccurate showSlide calls

commit 8cb8229aac9ee81e06c8ee52d7ffa291e61795c4
Author: Hakim El Hattab <[email protected]>
Date:   Wed Jun 25 11:44:10 2014 +0200

    prevent incorrect showSlide calls at startup

commit 0d9563b59809852c71424ad7f41fbea4a161d47a
Author: Hakim El Hattab <[email protected]>
Date:   Tue Jun 24 10:51:57 2014 +0200

    overview slide size matches defaults

commit c6b9da7000bc87f29dde25a859fee0e8858a31df
Author: Hakim El Hattab <[email protected]>
Date:   Wed Jun 18 18:42:45 2014 +0200

    more specific targeting for pdf printing hack

commit e4761d3a37a5fc3a9e11e22ae12435843ca04416
Author: Hakim El Hattab <[email protected]>
Date:   Wed Jun 18 10:50:00 2014 +0200

    only allow text in aria status div

commit 8f24561878598b49b630bb871b2e30402227f549
Author: Hakim El Hattab <[email protected]>
Date:   Mon Jun 16 18:47:39 2014 +0200

    documentation for help flag

commit ebfb49674308e51b1089e0451afc74d678482a09
Author: Hakim El Hattab <[email protected]>
Date:   Mon Jun 16 18:46:38 2014 +0200

    config option for disabling the help overlay

commit 2e0fe815a65f7431a51812bbf695b2fbda0927c8
Author: Hakim El Hattab <[email protected]>
Date:   Thu Jun 12 18:27:52 2014 +0200

    fix append to existing embed query

commit a7a32f941cb8c09c85865e5a287be82bc2e14adb
Author: Hakim El Hattab <[email protected]>
Date:   Thu Jun 12 18:20:15 2014 +0200

    vimeo support for autoplay/pause

commit af61d9d10baee982fe82132acc4cd2dd604a6c61
Author: Hakim El Hattab <[email protected]>
Date:   Thu Jun 12 18:15:32 2014 +0200

    rewrite youtube iframe embeds to force ?enablejsapi=1 (fixes #856)

commit 06e76c1be3f17ab2663b1f3587e8418f9d524098
Author: Hakim El Hattab <[email protected]>
Date:   Wed Jun 11 12:48:19 2014 +0200

    shift a few additional styles from core to theme

commit 38301d57c547a349e2cc790996c1213720aed9d4
Author: Hakim El Hattab <[email protected]>
Date:   Wed Jun 11 12:32:39 2014 +0200

    move large chunk of content styles from core css to theme css

commit f5ac0b35d1f9886de8782dbbc573d0ef12dcd131
Author: Hakim El Hattab <[email protected]>
Date:   Mon Jun 9 18:24:47 2014 +0200

    toggle instead of always showing the help overlay when ? is pressed

commit 3a6172e67d7a2e0f72db7eb7d00d1e85179aab6d
Author: Hakim El Hattab <[email protected]>
Date:   Mon Jun 9 18:21:32 2014 +0200

    more flexible keyboard shortcut table styles

commit b6ebb98309ffd1858404fd3579bc348bbe877654
Author: Hakim El Hattab <[email protected]>
Date:   Mon Jun 9 17:54:31 2014 +0200

    update link to Slides

commit 645734832dd264bb257a90256748cdf6f12a759f
Author: Hakim El Hattab <[email protected]>
Date:   Mon Jun 9 17:53:14 2014 +0200

    adjust list of displayed key shortcuts #943

commit 9ff00a72ae0cbf96b3c12d515ccfb31dbbc2283f
Author: Hakim El Hattab <[email protected]>
Date:   Mon Jun 9 17:35:46 2014 +0200

    merge and tweak key shortcuts overlay #943

commit d539c645c30ea38b7958c2fcb5e6397c1b183903
Merge: 65dcd94 594d9f6
Author: Hakim El Hattab <[email protected]>
Date:   Mon Jun 9 12:21:01 2014 +0200

    Merge branch 'keyboard_shortcuts_overlay' of https://github.com/navateja/reveal.js into dev

commit 65dcd94c864a72be93db011f20d747e9826f36c9
Author: Hakim El Hattab <[email protected]>
Date:   Mon Jun 9 12:18:37 2014 +0200

    update to node 0.10

commit b6c7cda90819ba518c69cb56c7edd02acb7a6d72
Author: Hakim El Hattab <[email protected]>
Date:   Mon Jun 9 12:07:40 2014 +0200

    ci fix attempt 2

commit f2db7e8da0b7d0555aac3ce1d45c42b6df58128c
Author: Hakim El Hattab <[email protected]>
Date:   Mon Jun 9 12:03:22 2014 +0200

    attempt to fix travis ci

commit 0a58df8390030288e6764b9a52d6f2c26b12a455
Author: Hakim El Hattab <[email protected]>
Date:   Mon Jun 9 11:36:28 2014 +0200

    don't trim aria status

commit 943b6ef37e951a90a52c3496ace681c3633662b4
Merge: 8973f0c e70d07b
Author: Hakim El Hattab <[email protected]>
Date:   Mon Jun 9 11:20:34 2014 +0200

    merge and tweak screen reader support #854

commit 594d9f6d85f6b1c6a953a64892cd2236529f0398
Merge: ab7efe6 8973f0c
Author: navateja <[email protected]>
Date:   Mon Jun 9 14:44:36 2014 +0530

    Merge remote-tracking branch 'upstream/dev' into keyboard_shortcuts_overlay

commit ab7efe6bf2da9b31b31a3af859e9f7f413fd2d0d
Author: navateja <[email protected]>
Date:   Mon Jun 9 14:35:59 2014 +0530

    creates a new branch for the feature

commit 75a53da9e54a462fe9bb313f2cd44320e0e4445a
Author: nava teja <[email protected]>
Date:   Sun Jun 8 00:59:29 2014 +0530

    Shows keyboard shorcuts overlay on pressing question mark

commit 8973f0c3e19ffafee489a3dcfce03303120ed22b
Author: Hakim El Hattab <[email protected]>
Date:   Thu Jun 5 10:59:30 2014 +0200

    typo #938

commit c5daba6a1fda21573620852b9041d3a922a07e70
Author: Hakim El Hattab <[email protected]>
Date:   Thu Jun 5 10:43:12 2014 +0200

    write current hash when history is toggled on #934

commit 6d1a66c2bcb3e859bcf011a3af60b8196c0d4c1f
Author: Hakim El Hattab <[email protected]>
Date:   Fri May 30 08:12:57 2014 +0200

    fix search & replace error

commit 9c96a56e3330b75ca3b3205c79b2c4c1f74edd25
Author: Hakim El Hattab <[email protected]>
Date:   Thu May 29 10:36:56 2014 +0200

    adjust check for focused text inputs

commit f4ead96b1ff980db6bce104abaa202bdd1d3663c
Author: Hakim El Hattab <[email protected]>
Date:   Mon May 26 11:25:47 2014 +0200

    move paragraph styles to theme

commit 09bddce42700b1dd4a1e102209de1873b8eee1ae
Author: Hakim El Hattab <[email protected]>
Date:   Sat May 24 15:23:03 2014 +0200

    limit scope of all slide selectors, avoids multiple .reveal classes on one page causing errors

commit ff788bb31b5c9af84c407502501575eeac012dcd
Author: Hakim El Hattab <[email protected]>
Date:   Fri May 23 14:06:52 2014 +0200

    additional monospace options for phantomjs

commit ba00afbc38d7c1ec71561a1d23404d27f4c9e594
Author: Hakim El Hattab <[email protected]>
Date:   Wed May 21 10:08:23 2014 +0200

    only use zoom to scale in chrome

commit dbc7c627cc112ebd17b48396273a4423b66d1f7e
Author: Hakim El Hattab <[email protected]>
Date:   Wed May 21 09:55:27 2014 +0200

    dont specify hyphens auto, behavior/rendering varies between browsers

commit e7f46155852cc35c338db0a9b5716ea1e5249717
Author: Hakim El Hattab <[email protected]>
Date:   Tue May 20 12:09:49 2014 +0200

    hide slide numbers while printing to pdf #885

commit c1ea5282e1f632a2e9cacc02be8bd4e7ab88dba1
Author: Hakim El Hattab <[email protected]>
Date:   Tue May 20 08:53:25 2014 +0200

    fix data-autoplay on first slide

commit 8c9c0ab0a64f32e8aa567009a82bac57464f4f93
Author: Hakim El Hattab <[email protected]>
Date:   Tue May 20 08:14:48 2014 +0200

    validate named links according to html id spec #914

commit b558f742990f08659348146c2bf3527ed99d519f
Author: Hakim El Hattab <[email protected]>
Date:   Mon May 19 09:26:44 2014 +0200

    zoom viewport is centered on target element #900

commit c974756326b25d14be3d5cd31e400a2b8e63ac3c
Author: Hakim El Hattab <[email protected]>
Date:   Sat May 17 16:00:40 2014 +0200

    relax keyboard blocking condition #899

commit 252200f9f3e8efaa05c207d44f8e0241303cc571
Author: Hakim El Hattab <[email protected]>
Date:   Thu May 15 11:42:44 2014 +0200

    add minimal-ui to viewport for ios fullscreen

commit b9d25057d688dbe8aef4df7a8baa0dcb33137370
Merge: 54c3c23 ffecac6
Author: Hakim El Hattab <[email protected]>
Date:   Wed May 14 08:50:28 2014 +0200

    Merge branch 'fix-isFirstSlide' of https://github.com/fabianorosas/reveal.js into dev

commit 54c3c23e363e99772be4f0db30b177c2bffc1b39
Author: Hakim El Hattab <[email protected]>
Date:   Sat May 10 11:18:13 2014 +0200

    fix bug in retrieval or background images while in pdf mode

commit 06ca536ae1b0f65b58411aab947d70951862c2a1
Author: Hakim El Hattab <[email protected]>
Date:   Sat May 10 10:10:59 2014 +0200

    no need to override font sizes after updates to pdf printing

commit ffecac6df30b00cf35588a00299b610b76a953f2
Author: fabiano <[email protected]>
Date:   Fri May 9 16:11:04 2014 -0300

    == --> ===

commit cb4fe35bac514fcacf98b76f094071b9d50a722b
Author: fabiano <[email protected]>
Date:   Fri May 9 15:58:56 2014 -0300

    fixed a problem in the function isFirstSlide

    when visiting a vertical slide and then going back to the first slide, the function would return false.
    made it more fail proof by checking the indices directly.

commit d072be2f573fe532f95907dc02c85b224b64819d
Author: fabiano <[email protected]>
Date:   Fri May 9 14:23:25 2014 -0300

    kill-yank mistake

commit af1ade14187c50a0e8d7ca954dfd1ae7d3043456
Author: fabiano <[email protected]>
Date:   Fri May 9 12:28:53 2014 -0300

    Broaden the coverage of isFirstSlide test

    If we:
    - visit a vertical slide

    and then:
    - go to the first slide

    the function will return **false**.

    Added a test to isLastSlide too just to be sure.

commit 92fd4f78c86ea296ceb90c748f088674a5a12c5f
Author: fabiano <[email protected]>
Date:   Fri May 9 11:51:55 2014 -0300

    Small typo

commit c4e202cd0ffeedc817c0506116744102dd63419a
Author: Hakim El Hattab <[email protected]>
Date:   Wed May 7 22:02:05 2014 +0200

    fix edge case in singleton node creation

commit f31f0ffa700f860a6d4492bdb3b5c0dee6d565d7
Author: Hakim El Hattab <[email protected]>
Date:   Wed May 7 21:47:47 2014 +0200

    createSingletonNode now ensures found nodes are in the correct container

commit 3eb7038a153b12245cffbc840a727a764d82b333
Author: Hakim El Hattab <[email protected]>
Date:   Sun May 4 10:10:21 2014 +0200

    sync server-side speaker notes after notes window opens

commit 5e85f02eb1596d0c5a71aa35430c0914e0b6d35a
Author: Hakim El Hattab <[email protected]>
Date:   Sun May 4 09:32:10 2014 +0200

    ensure default can be prevented

commit 4c5b15d0b92cae5828df5d39c5e5a51e68242752
Author: Hakim El Hattab <[email protected]>
Date:   Sun May 4 09:32:00 2014 +0200

    update server side notes to match client side plugin

commit 54e256764ce98204caad708b654f6250fb781664
Author: Hakim El Hattab <[email protected]>
Date:   Sun May 4 08:29:45 2014 +0200

    limit size of media elements when printing to pdf

commit da1f221b4f1ad11edf4099d651cb56e7fae79db0
Author: Hakim El Hattab <[email protected]>
Date:   Sun May 4 08:24:26 2014 +0200

    reduce max-height of images in pdfs

commit fa6187072e70ed8c8f08df6a4a6bd4d68db8074e
Author: Hakim El Hattab <[email protected]>
Date:   Sun May 4 08:13:03 2014 +0200

    clicking on notes timer now resets it #779

commit 1b236bdf211ac2a9600a89fe4efae9619193a410
Author: Hakim El Hattab <[email protected]>
Date:   Tue Apr 29 13:40:55 2014 +0200

    wait for document to load before triggering pdf layout

commit 2ac0a55ccf0e8f881ff48f3500865bff37ec6fa3
Author: Hakim El Hattab <[email protected]>
Date:   Tue Apr 29 13:30:56 2014 +0200

    ensure pdf pages are never zero-height

commit eec14b9c9200abda683bc8e532d1e6500f0a652d
Author: Hakim El Hattab <[email protected]>
Date:   Tue Apr 29 10:46:58 2014 +0200

    pdf background size rounding error

commit ebb9a689a052eb80b2603f6722cb0cfeebd30e47
Author: Hakim El Hattab <[email protected]>
Date:   Tue Apr 29 10:23:52 2014 +0200

    updates to phantom pdf print script, arguments for width/height

commit fbf999ec8125980f5dde6c20c056c6ad9cf245a7
Author: Hakim El Hattab <[email protected]>
Date:   Mon Apr 28 12:31:34 2014 +0200

    null check background

commit 1391253cb815e36e6956553791f3a25f74923c95
Author: Hakim El Hattab <[email protected]>
Date:   Mon Apr 28 11:54:11 2014 +0200

    test same conditions for both getSlide and getSlideBackground

commit 635e51f8f54ba519c7b865b7b4f62cb65a927d2f
Author: Hakim El Hattab <[email protected]>
Date:   Mon Apr 28 11:51:35 2014 +0200

    addition background image and getSlideBackground tests

commit 9873839a50bffa9ef57050cf583588db2f66fde6
Author: Hakim El Hattab <[email protected]>
Date:   Mon Apr 28 11:51:21 2014 +0200

    fix issue with background images on first vertical sldie

commit 9f0224adf9c33d466292c5917533cee15c8536ed
Author: Hakim El Hattab <[email protected]>
Date:   Mon Apr 28 10:59:31 2014 +0200

    update visibility of slides as part of sync

commit 02725cf728488edc89b66229b8e634a87b1d8d20
Author: Hakim El Hattab <[email protected]>
Date:   Mon Apr 28 10:41:31 2014 +0200

    prefer scaling over zooming on mobile devices

commit fcec8d058d981593b1d237d7760f42354ee7684a
Author: Hakim El Hattab <[email protected]>
Date:   Mon Apr 28 09:58:13 2014 +0200

    fix lazy loading bug related to data-background-image attribute

commit fa2413ec73b72fea831b64ac983d3006fae59fcd
Author: Hakim El Hattab <[email protected]>
Date:   Mon Apr 28 09:44:54 2014 +0200

    fix slide transitions in iOS

commit b42fae96e5836abd1207b6fc8d55b5a6127892bc
Author: Hakim El Hattab <[email protected]>
Date:   Mon Apr 28 09:13:57 2014 +0200

    load all images directly when in 'no-transform'-mode

commit 6aaff6395ac35c9f554dc2d6ab3531eab4b08c08
Merge: 860580d c67e6d2
Author: Hakim El Hattab <[email protected]>
Date:   Sun Apr 27 20:38:20 2014 +0200

    merge umd wrapping

commit 860580d4d0d10646b59a9b3663c0c1cc504bc1c2
Author: Hakim El Hattab <[email protected]>
Date:   Sun Apr 27 17:31:50 2014 +0200

    getSlideBackground now works in pdf mode, add pdf tests

commit 41e1e013b8c86683fd042e65bc3fc0f4e1655559
Author: Hakim El Hattab <[email protected]>
Date:   Sun Apr 27 15:55:57 2014 +0200

    better defered loading of background media

commit 7158c12effbce8a52c1a6385c1f9ee479c81c9fe
Author: Hakim El Hattab <[email protected]>
Date:   Sun Apr 27 15:39:11 2014 +0200

    lazy load all slide backgrounds

commit 0140a15bae7cd1c295bf6d64157fed3eaf065c0a
Author: Hakim El Hattab <[email protected]>
Date:   Sun Apr 27 15:33:41 2014 +0200

    fix getindices test

commit c58096ea991771425f61b9a3a6fc0de8abab07d6
Author: Hakim El Hattab <[email protected]>
Date:   Sun Apr 27 15:04:37 2014 +0200

    disregard v index when there is no vertical slides/backgrounds in getSlide/getSlideBackground

commit 902e36c0228478083d9f2ef487c12f9de401d404
Author: Hakim El Hattab <[email protected]>
Date:   Sun Apr 27 14:54:23 2014 +0200

    break showing/hiding of slides into separate methods

commit eea437f4be92bafbe96d5276233d4fdff7b5f814
Author: Hakim El Hattab <[email protected]>
Date:   Sun Apr 27 14:46:49 2014 +0200

    new api method: getBackgroundSlide

commit 1623b3782efe7b57846ad7fb66fc50d1c8f041ea
Author: Hakim El Hattab <[email protected]>
Date:   Sun Apr 27 08:30:57 2014 +0200

    fix #627

commit ddfb0aa86fdfc8e92d0b81fbe36dc79c4585dd86
Author: Hakim El Hattab <[email protected]>
Date:   Sat Apr 26 21:41:54 2014 +0200

    abide by configured width/height when printing to pdf

commit a522312999c93b1a5a8353ab18d573c9c4ac83f2
Author: Hakim El Hattab <[email protected]>
Date:   Sat Apr 26 20:49:22 2014 +0200

    improvements to print stylesheet

commit e7d82f1316a51cae3f33bc3c37faeb65280f62a9
Author: Hakim El Hattab <[email protected]>
Date:   Sat Apr 26 20:23:40 2014 +0200

    fix transitions in firefox

commit ae962d729be2b6e1b8db0c5e207c55887ff9f8dc
Author: Hakim El Hattab <[email protected]>
Date:   Sat Apr 26 19:16:10 2014 +0200

    fix non-pdf printing (closes #881)

commit b0196045310a2f56f59f5a971399482745578f87
Merge: 1e5ca74 b797bbb
Author: Hakim El Hattab <[email protected]>
Date:   Sat Apr 26 18:21:39 2014 +0200

    Merge branch 'feature/print' into dev

commit 1e5ca748a49b35ec698fc73d0420bb63534b9ae7
Author: Hakim El Hattab <[email protected]>
Date:   Sat Apr 26 11:35:55 2014 +0200

    enable reveal.js keyboard shortcuts anywhere in notes window

commit b797bbb61b2b07242e82812bf2f94e5af1371569
Author: Hakim El Hattab <[email protected]>
Date:   Sat Apr 26 11:02:54 2014 +0200

    readme update, kill event listeners when printing pdf

commit 704022d948b11fd8a03b09c8c82f15b9073aa2ec
Author: Hakim El Hattab <[email protected]>
Date:   Sat Apr 26 10:22:18 2014 +0200

    simplify pdf layout

commit 2f90e9198d2387ca0e7eeca082e710759c02c57a
Author: Hakim El Hattab <[email protected]>
Date:   Sat Apr 26 09:34:58 2014 +0200

    some more flexibility for pdf export sizes

commit 131c00689a4c7a18e5c991fc8102347e4594b5d4
Merge: 9da952f ca7c33f
Author: Hakim El Hattab <[email protected]>
Date:   Sat Apr 26 09:07:56 2014 +0200

    Merge pull request #883 from seanfisk/fix-small-misspelling

    fix small misspelling: Mardown -> Markdown

commit 059cca6fa4925de7e31c4f600b7954d9215fe878
Author: Hakim El Hattab <[email protected]>
Date:   Sat Apr 26 08:51:33 2014 +0200

    abide by configured slide width when exporting to pdf

commit 3adaed2a1ee1bb3306cb30aa86b90819d1c03af6
Author: Hakim El Hattab <[email protected]>
Date:   Sat Apr 26 08:26:20 2014 +0200

    allow tall slides to spread over pages in pdf export

commit ca7c33f07c060adff70e0c15fe654968a3087c57
Author: Sean Fisk <[email protected]>
Date:   Thu Apr 24 05:15:16 2014 -0400

    Fix small misspelling: Mardown -> Markdown

commit a49a78c454ab88120af37b0cc44df75cd0c31601
Author: Hakim El Hattab <[email protected]>
Date:   Wed Apr 23 21:18:13 2014 +0200

    remove needless condition

commit 646203f038fcddbc15c35e891d3bbd7aa1d8be1f
Author: Hakim El Hattab <[email protected]>
Date:   Wed Apr 23 19:47:30 2014 +0200

    revert from flexbox for pdf centering, use js for PDF setup

commit 54ca9edeed077c4f7e564d0fa26c086af28a02ee
Author: Hakim El Hattab <[email protected]>
Date:   Wed Apr 23 15:36:22 2014 +0200

    lazy load support for iframes #793

commit 53238c47ce85b2746d8d3375dc909aff892de3e7
Author: Hakim El Hattab <[email protected]>
Date:   Tue Apr 22 19:01:59 2014 +0200

    null and type check what comes through postmessage

commit 167400ee8b846be814ae6b4ef8bac48c8b9e539c
Author: Hakim El Hattab <[email protected]>
Date:   Tue Apr 22 16:53:52 2014 +0200

    documentation for #793

commit 73f96f1d284bca6e01c36c888c2620b376c06598
Author: Hakim El Hattab <[email protected]>
Date:   Tue Apr 22 16:10:08 2014 +0200

    lazy-load support for audio #793

commit 3ad0d6adc026c620af1b2eaadabd2ce2c338e2f1
Author: Hakim El Hattab <[email protected]>
Date:   Tue Apr 22 15:58:21 2014 +0200

    tests for lazy loading

commit bbd596e434969b446c2dff0929e3117285974fc4
Author: Hakim El Hattab <[email protected]>
Date:   Tue Apr 22 15:52:44 2014 +0200

    lazy loading support for video #793

commit 343765b7ab1ce5392389063b0513ce54a0a76506
Author: Hakim El Hattab <[email protected]>
Date:   Tue Apr 22 15:41:08 2014 +0200

    images with data-src attribute are now lazy-loaded #793

commit 5d39b5eabf97a39936c70558e836253f9bbca931
Author: Hakim El Hattab <[email protected]>
Date:   Tue Apr 22 15:16:53 2014 +0200

    carry slide classes over to generated background elements

commit 37ebe0732c411bee812852e80294bd36d75cd76c
Author: Hakim El Hattab <[email protected]>
Date:   Tue Apr 22 15:05:06 2014 +0200

    skip transitions in notes window for better main window performance

commit f396b9b8714fdcc191a66967a8d34b187ae8944a
Author: Hakim El Hattab <[email protected]>
Date:   Tue Apr 22 14:50:50 2014 +0200

    limit how often the notes window updates presentation states

commit c02d185cfd7c5077b3e296d72e5f0c879bc15bb4
Author: Hakim El Hattab <[email protected]>
Date:   Tue Apr 22 14:14:21 2014 +0200

    notes code format tweaks

commit ce05138f9a9065526ee584d2f59e48952910522f
Author: Hakim El Hattab <[email protected]>
Date:   Tue Apr 22 14:06:58 2014 +0200

    dont toggle paused/overview modes needlessly when setting state

commit 9b2851376dee7a29e6142c011b3af80d6d917a87
Author: Hakim El Hattab <[email protected]>
Date:   Sun Apr 20 11:50:23 2014 +0200

    always indent html using tabs

commit fb7253187d1e7874bba702d9fd4cbdc620aa4955
Author: Hakim El Hattab <[email protected]>
Date:   Sun Apr 20 11:29:44 2014 +0200

    correction to javascript code sample

commit 4a39aecbab17652b03bd863474dc0c458c96881a
Author: Hakim El Hattab <[email protected]>
Date:   Sun Apr 20 10:52:27 2014 +0200

    prevent repeated autoslidepaused/resumed events

commit 3795ef1599cae8debe161c13a530ad565a767291
Author: Hakim El Hattab <[email protected]>
Date:   Sun Apr 20 10:26:00 2014 +0200

    update style of notes plugin to match Slides

commit 5b18c1f308523527566cefc85414170e922bc4a2
Author: Hakim El Hattab <[email protected]>
Date:   Sat Apr 19 10:54:14 2014 +0200

    notes plugin now operates entirely through window.postMessage, adding support for file protocol

commit ce31184bf30fcfbc45dab480d0072e51f626b15a
Author: Hakim El Hattab <[email protected]>
Date:   Sat Apr 19 10:53:33 2014 +0200

    split postmessage config into two options

commit fea11d24bc7b93ef516fa52a04e32b5ae5e419de
Author: Hakim El Hattab <[email protected]>
Date:   Fri Apr 18 20:07:03 2014 +0200

    add config option for postMessage features

commit a4b09aecda8f70837c44a18c846ab892a2c0800c
Author: Hakim El Hattab <[email protected]>
Date:   Fri Apr 18 20:03:50 2014 +0200

    bubble all reveal.js events to parent window through postMessage

commit 11ea0aa3e13e665dc882a432381c27898c86e569
Author: Hakim El Hattab <[email protected]>
Date:   Fri Apr 18 13:56:51 2014 +0200

    postmessage plugin is now part of reveal.js core

commit 38af788a65bcb18e644ae63f83410710c80ae97b
Author: Hakim El Hattab <[email protected]>
Date:   Sun Apr 13 12:00:06 2014 +0200

    fix css syntax error

commit 3b111a1cd4cd8fe4a7bd27f70ea270e09a0073ce
Author: Hakim El Hattab <[email protected]>
Date:   Sun Apr 13 11:55:06 2014 +0200

    add support for custom keyboard availability condition

commit 731598f7c8fdb2b5fa6ade3f3e351958a5ba1a28
Author: Hakim El Hattab <[email protected]>
Date:   Fri Apr 11 09:40:44 2014 +0200

    make all slides 'present' while printing

commit c67e6d2e490f95e0f3e679f07ba347572a840c97
Author: Michael Williams <[email protected]>
Date:   Tue Apr 8 17:08:43 2014 -0700

    build reveal.min.js

commit 613a05f1544d21d5a16ffcefd960c24daec91873
Author: Michael Williams <[email protected]>
Date:   Tue Apr 8 17:08:21 2014 -0700

    add UMD support. fix #787

commit e70d07b45da3a60d9f79bb65af3ded3d6d79f81f
Author: Nawaz <[email protected]>
Date:   Mon Apr 7 10:49:07 2014 +0530

    Change innerHTML to textContent to avoid video replays inside status Div, for not text content is enough

commit a3d4afeeed1aec725a42cb404e62f89739c8faa3
Author: Hakim El Hattab <[email protected]>
Date:   Sun Apr 6 11:04:58 2014 +0200

    better transition names, fix background images in vertical slides

commit c87d7db93064bac472e1cc80bee28c4dcc92565b
Author: Hakim El Hattab <[email protected]>
Date:   Sun Apr 6 10:18:38 2014 +0200

    code format tweak

commit 2eb3d082ce0d406b128c17e03b53ee2ccb7a500d
Merge: 3aaca47 873f2db
Author: Hakim El Hattab <[email protected]>
Date:   Sun Apr 6 10:16:46 2014 +0200

    Merge branch 'xhr-local' of https://github.com/malyw/reveal.js into dev

commit 3aaca471b193cf2ff4bb54432e59798b6c688a43
Author: Hakim El Hattab <[email protected]>
Date:   Sun Apr 6 10:09:25 2014 +0200

    stop tracking minified files #783

commit a200e93537b17f1ddea1f677262bc1f52120926b
Merge: d45892f 286acf3
Author: Hakim El Hattab <[email protected]>
Date:   Sun Apr 6 10:04:36 2014 +0200

    Merge branch 'patch-1' of https://github.com/jamestwebber/reveal.js into dev

commit d45892ff32f65e7f0f3bb9f308f50791108d51b0
Author: Hakim El Hattab <[email protected]>
Date:   Sun Apr 6 10:03:46 2014 +0200

    next release will be 3.0.0

commit 2901abccdedf3a1068975229f496c581e1234174
Merge: 1d13760 80aadaf
Author: Hakim El Hattab <[email protected]>
Date:   Sun Apr 6 09:56:54 2014 +0200

    Merge pull request #682 from tentacode/patch-1

    Indentation issue when using code in a markdown slide

commit 1d13760f0ee2de7bd698585701f42054c1a46b86
Author: Hakim El Hattab <[email protected]>
Date:   Fri Apr 4 11:35:54 2014 +0200

    only use zoom to scale content in webkit

commit 170aa31d6f78130f62bffeb1cb7cc7f342fc5966
Author: Hakim El Hattab <[email protected]>
Date:   Fri Apr 4 09:22:15 2014 +0200

    video background playback

commit 43bf882d0800c30f024b2c3e097d98dde65bc7c9
Author: Hakim El Hattab <[email protected]>
Date:   Thu Apr 3 11:58:15 2014 +0200

    revamped and greatly simplified the layout of .slides

commit f0f48bd9b06ffdd22f264ca5f644666347944ceb
Author: Hakim El Hattab <[email protected]>
Date:   Thu Apr 3 10:51:27 2014 +0200

    use flexbox for vertically centered printing #862

commit 873f2dbc96e712d1afbc2f197c8b60287d7f728c
Author: Sergey Gospodarets <[email protected]>
Date:   Wed Apr 2 13:02:39 2014 +0300

    Mark xhr.status=0 as successful

commit 75247a88606b1ab2e2158fe476fbe53340dc4934
Author: Sergey Gospodarets <[email protected]>
Date:   Wed Apr 2 12:59:36 2014 +0300

    Mark xhr.status=0 as successful

commit 9e78fe3ee215beb426ae7f44eb729a9be8bfddf6
Merge: 79f45c8 2a27967
Author: Hakim El Hattab <[email protected]>
Date:   Tue Apr 1 09:14:43 2014 +0200

    Merge branch 'dev' of github.com:ht push origin akimel/reveal.js into dev

commit 79f45c811e8037b711daf247d383eedbcef1c41b
Author: Hakim El Hattab <[email protected]>
Date:   Tue Apr 1 09:14:29 2014 +0200

    test for #858

commit 9947b7a5324c9783de43f867c1f7a3ac0687144f
Author: Hakim El Hattab <[email protected]>
Date:   Tue Apr 1 09:12:41 2014 +0200

    add getTotalSlides #858

commit 20a725222bf538fa21561d78b89031063ba83647
Author: Nawaz <[email protected]>
Date:   Thu Mar 27 16:39:27 2014 +0530

    Make revealJS screen reader friendly by announcing the contents of each slide presented

commit 1de159c4f4dd83118805499858b21b830428d9ce
Author: Hakim El Hattab <[email protected]>
Date:   Wed Mar 26 15:48:28 2014 +0100

    start work on video backgrounds #751

commit ccbeaf4c32a70cfd89c5af5c8c65b0b90f0c9252
Author: Hakim El Hattab <[email protected]>
Date:   Wed Mar 26 15:20:12 2014 +0100

    optimization, only declare background creation method once

commit 2a27967d4b6ed61cba43b4535a0359b8ab1e693e
Merge: 17d8f0b 0b3bae1
Author: Hakim El Hattab <[email protected]>
Date:   Tue Mar 25 21:41:40 2014 +0100

    Merge pull request #794 from Spy-Seth/dev

    increase Logitech R400 remote compatibility

commit 17d8f0b77c9ca58e2a2819a41e3bf6e221d48d11
Merge: eef1636 9da952f
Author: Hakim El Hattab <[email protected]>
Date:   Tue Mar 25 21:37:51 2014 +0100

    merge master into dev

commit 9da952fea30906090446d038430186b11dba7f13
Merge: 7285653 da949c3
Author: Hakim El Hattab <[email protected]>
Date:   Tue Mar 25 21:36:09 2014 +0100

    Merge pull request #832 from craigcitro/patch-1

    tweak layout in readme installation markup

commit eef1636fd712cb581a4c2280810255e284404e98
Merge: a9c2d4d 1a7732c
Author: Hakim El Hattab <[email protected]>
Date:   Tue Mar 25 21:16:58 2014 +0100

    Merge branch 'dev' of https://github.com/xdhmoore/reveal.js into dev

commit a9c2d4d6635462e40d6446d1be465ae0c2fdbd7f
Author: Hakim El Hattab <[email protected]>
Date:   Tue Mar 25 17:46:10 2014 +0100

    disable transition i…
software-opal pushed a commit to software-opal/why-python-is-awesome that referenced this issue Sep 5, 2015
@prof-tcsmith
Copy link

prof-tcsmith commented Aug 3, 2016

Did this bug creep back into the latest version. I cannot get a vertical slide to work - in either the external or md file.

For external
<section data-markdown="example.md" data-separator="^\n----\n" data-vertical="^\n---\n">
NOTE: I've also tried "^\r\n---\r\n" and ^\r\n---\r\n$" and "^\n---\n$"

And in this file...

###Title

----

####Title 2
* 1
* 2
* 3

This produces a seperate slide,

but this

###Title

---

####Title 2
* 1
* 2
* 3

Doesn't produce a new vertical slide, but instead the following "stacked" (single slide)

capture

@soundspawn
Copy link

Try with data-separator-vertical instead of data-vertical - worked for me on 3.3.0

Check markdown.js plugin around line 239
verticalSeparator: section.getAttribute( 'data-separator-vertical' ),

@noraj
Copy link

noraj commented Sep 23, 2016

it's not data-vertical but data-separator-vertical

@yveskerbensd
Copy link

If you are using windows, this should work:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests