Merge pull request #3459 from Rob--W/define-URL
Always declare window.URL even if undefined
This commit is contained in:
commit
a50501c43a
@ -94,7 +94,7 @@ if (typeof PDFJS === 'undefined') {
|
||||
|
||||
// URL = URL || webkitURL
|
||||
(function normalizeURLObject() {
|
||||
if (!window.URL && window.webkitURL) {
|
||||
if (!window.URL) {
|
||||
window.URL = window.webkitURL;
|
||||
}
|
||||
})();
|
||||
|
Loading…
x
Reference in New Issue
Block a user