aboutsummaryrefslogtreecommitdiffhomepage
path: root/js/reveal.js
diff options
context:
space:
mode:
authorHakim El Hattab2013-06-10 08:49:53 +0200
committerHakim El Hattab2013-06-10 08:49:53 +0200
commit8e348af8b8591bd6ae21282728e7510c47eb29fd (patch)
treee7d3324f8ee66fb993fc81ae6a9a3f5a8e4c419e /js/reveal.js
parent7e50404ad71ac81432c3792d59b5a489543d7277 (diff)
pluralize background classname to match '.slides'
Diffstat (limited to 'js/reveal.js')
-rw-r--r--js/reveal.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/reveal.js b/js/reveal.js
index 7f0223f..b3ccffe 100644
--- a/js/reveal.js
+++ b/js/reveal.js
@@ -190,9 +190,9 @@ var Reveal = (function(){
dom.slides = document.querySelector( '.reveal .slides' );
// Background element
- if( !document.querySelector( '.reveal .background' ) ) {
+ if( !document.querySelector( '.reveal .backgrounds' ) ) {
dom.background = document.createElement( 'div' );
- dom.background.classList.add( 'background' );
+ dom.background.classList.add( 'backgrounds' );
dom.wrapper.appendChild( dom.background );
}