diff options
author | Hakim El Hattab | 2011-12-30 22:33:19 -0800 |
---|---|---|
committer | Hakim El Hattab | 2011-12-30 22:33:19 -0800 |
commit | 9856f57db5a2a66d78f58f07069ebf8c1f5b9d56 (patch) | |
tree | 0a9704d3503f101a871f0f159d7938b083c3357f /index.html | |
parent | 73eb66bf71173fac7d02668f91b74cfd141517c7 (diff) |
browser history updates can now be disabled via config
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -5,6 +5,9 @@ <meta charset="utf-8"> <title>reveal.js</title> + + <meta name="description" content="An easy to use CSS 3D slideshow tool for quickly creating good looking HTML presentations."> + <meta name="author" content="Hakim El Hattab"> <link href='http://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic' rel='stylesheet' type='text/css'> @@ -219,6 +222,9 @@ // Display a presentation progress bar progress: true, + // If true; each slide will be pushed to the browser history + history: false, + // Apply a 3D roll to links on hover rollingLinks: true, @@ -226,11 +232,11 @@ theme: query.theme || 'default', // default/neon // Transition style - transition: query.transition || 'default' // default/cube/page/concave/linear(2d), + transition: query.transition || 'default' // default/cube/page/concave/linear(2d) }); hljs.initHighlightingOnLoad(); </script> - + </body> </html>
\ No newline at end of file |