summaryrefslogtreecommitdiffhomepage
path: root/js/reveal.js
diff options
context:
space:
mode:
authorHakim El Hattab2013-04-06 12:18:25 -0400
committerHakim El Hattab2013-04-06 12:18:25 -0400
commita400dd0c705db7510aeebaa03539bd199edd6ac6 (patch)
treee3a57b44f13131fdbe8f59191abed4b326d0e7db /js/reveal.js
parent308987ee31a0774d4dbfb45df8e9b2b8ed397089 (diff)
support for transition speed settings (closes #392)
Diffstat (limited to 'js/reveal.js')
-rw-r--r--js/reveal.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/js/reveal.js b/js/reveal.js
index 8d48814..c56ee2b 100644
--- a/js/reveal.js
+++ b/js/reveal.js
@@ -73,6 +73,9 @@ var Reveal = (function(){
// Transition style
transition: 'default', // default/cube/page/concave/zoom/linear/fade/none
+ // Transition speed
+ transitionSpeed: 'default', // default/fast/slow
+
// Script dependencies to load
dependencies: []
},
@@ -340,6 +343,8 @@ var Reveal = (function(){
dom.wrapper.classList.add( config.transition );
+ dom.wrapper.setAttribute( 'data-transition-speed', config.transitionSpeed );
+
if( dom.controls ) {
dom.controls.style.display = ( config.controls && dom.controls ) ? 'block' : 'none';
}