浏览代码

Examples: Nicer workaround for iOS iframe issue.

Mr.doob 9 年之前
父节点
当前提交
c0537d2fba
共有 1 个文件被更改,包括 4 次插入7 次删除
  1. 4 7
      examples/index.html

+ 4 - 7
examples/index.html

@@ -264,16 +264,13 @@
 			event.preventDefault();
 		} );
 
-		// iOS8 workaround
+		// iOS iframe auto-resize workaround
 
 		if ( /(iPad|iPhone|iPod)/g.test( navigator.userAgent ) ) {
 
-			viewer.addEventListener( 'load', function ( event ) {
-
-				viewer.contentWindow.innerWidth -= 10;
-				viewer.contentWindow.innerHeight -= 2;
-
-			} );
+			viewer.style.width = window.innerWidth - 310 + 'px';
+			viewer.style.height = window.innerHeight + 'px';
+			viewer.setAttribute( 'scrolling', 'no' );
 
 		}