Browse Source

fix for iOS not allowing touch events in iframes

Gregg Tavares 6 years ago
parent
commit
bb4974d365
1 changed files with 2 additions and 0 deletions
  1. 2 0
      threejs/lessons/resources/lesson.js

+ 2 - 0
threejs/lessons/resources/lesson.js

@@ -356,3 +356,5 @@ $(document).ready(function($){
 });
 }(jQuery));
 
+// ios needs this to allow touch events in an iframe
+window.addEventListener('touchstart', {});