1
0
mirror of https://github.com/hakimel/reveal.js.git synced 2025-08-12 01:25:17 +02:00

change condition for detecting when there are horizontal slides

This commit is contained in:
Hakim El Hattab
2017-06-02 12:13:41 +02:00
parent 0388c96e60
commit 9ab14374e5

View File

@@ -2764,7 +2764,7 @@
}
// Flag if there are ANY horizontal slides, anywhere in the deck
if( dom.wrapper.querySelectorAll( '.slides>section:not(.stack)' ).length ) {
if( dom.wrapper.querySelectorAll( '.slides>section' ).length > 1 ) {
dom.wrapper.classList.add( 'has-horizontal-slides' );
}
else {