浏览代码

only use zoom to scale in chrome

Hakim El Hattab 11 年之前
父节点
当前提交
ba00afbc38
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      js/reveal.js

+ 2 - 2
js/reveal.js

@@ -1266,8 +1266,8 @@
 			scale = Math.max( scale, config.minScale );
 			scale = Math.min( scale, config.maxScale );
 
-			// Prefer zooming in desktop WebKit so that content remains crisp
-			if( !isMobileDevice && /webkit/i.test( navigator.userAgent ) && typeof dom.slides.style.zoom !== 'undefined' ) {
+			// Prefer zooming in desktop Chrome so that content remains crisp
+			if( !isMobileDevice && /chrome/i.test( navigator.userAgent ) && typeof dom.slides.style.zoom !== 'undefined' ) {
 				dom.slides.style.zoom = scale;
 			}
 			// Apply scale transform as a fallback