diff options
author | Hakim El Hattab | 2014-04-04 11:35:54 +0200 |
---|---|---|
committer | Hakim El Hattab | 2014-04-04 11:35:54 +0200 |
commit | 1d13760f0ee2de7bd698585701f42054c1a46b86 (patch) | |
tree | 966aa5dfcf74b90828ac21b1e2b49a6b644ffde2 /js/reveal.js | |
parent | 170aa31d6f78130f62bffeb1cb7cc7f342fc5966 (diff) |
only use zoom to scale content in webkit
Diffstat (limited to 'js/reveal.js')
-rw-r--r-- | js/reveal.js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/js/reveal.js b/js/reveal.js index 04350d0..06b217b 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -1111,9 +1111,8 @@ var Reveal = (function(){ scale = Math.max( scale, config.minScale ); scale = Math.min( scale, config.maxScale ); - // Prefer applying scale via zoom since Chrome blurs scaled content - // with nested transforms - if( typeof dom.slides.style.zoom !== 'undefined' && !navigator.userAgent.match( /(iphone|ipod|ipad|android)/gi ) ) { + // Prefer zooming in WebKit so that content remains crisp + if( /webkit/i.test( navigator.userAgent ) && typeof dom.slides.style.zoom !== 'undefined' ) { dom.slides.style.zoom = scale; } // Apply scale transform as a fallback |