diff options
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 312d5d1..a6bd81a 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -1471,7 +1471,7 @@ // No point in calculating scale if the only possible // result is 1 - if( config.minScale !== 1 || config.maxScale !== 1 ) { + if( scale !== -1 || config.minScale !== 1 || config.maxScale !== 1 ) { // Determine scale of content to fit within available space scale = Math.min( size.presentationWidth / size.width, size.presentationHeight / size.height ); |