Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove or= from variable initialization
The original code created a local variable `head` and assigned it to either `...getElementsByTagName('head')[0]` or to `document.documentElement`. The new code fails to compile, because a variable named `head` does not exist in scope.
- Loading branch information