diff options
author | Hakim El Hattab | 2013-02-02 17:05:05 -0500 |
---|---|---|
committer | Hakim El Hattab | 2013-02-02 17:05:05 -0500 |
commit | 723bd1cc0b7288deae9d20cbf6a4d72583b39437 (patch) | |
tree | 6ed6f682417a9950254bacfe74034141edcc9258 /js/reveal.js | |
parent | 1b01a749b07d1075d56ee133cea020e512eab0e2 (diff) |
reduce width of single-page fallback slides
Diffstat (limited to 'js/reveal.js')
-rw-r--r-- | js/reveal.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/reveal.js b/js/reveal.js index f2b9617..5ceb9a2 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -141,7 +141,7 @@ var Reveal = (function(){ */ function initialize( options ) { - if( ( !supports2DTransforms && !supports3DTransforms ) ) { + if( !supports2DTransforms && !supports3DTransforms ) { document.body.setAttribute( 'class', 'no-transforms' ); // If the browser doesn't support core features we won't be |