We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3991042 commit 148ca41Copy full SHA for 148ca41
processing.js
@@ -28,7 +28,9 @@
28
var isDOMPresent = ("document" in this) && !("fake" in this.document);
29
30
// document.head polyfill for the benefit of Firefox 3.6
31
- document.head = document.head || document.getElementsByTagName('head')[0];
+ if (!document.head) {
32
+ document.getElementsByTagName('head')[0];
33
+ }
34
35
// Typed Arrays: fallback to WebGL arrays or Native JS arrays if unavailable
36
function setupTypedArray(name, fallback) {
0 commit comments