mirror of
https://github.com/zen-browser/pdf.js.git
synced 2025-07-10 02:05:37 +02:00
Put URL = URL || webkitURL in compatibility.js
Declares the URL variable globally. If the feature is not supported, the variable will still be declared, but have the "undefined" value. Supported by: - Firefox 4 Firefox 21 in Web worker - Chrome 8 (prefixed as webkitURL), 23+ unprefixed Chrome 10 (prefixed as webkitURL) in Web Worker, 23+ unprefixed - Opera 15 Opera 15 in Web Worker - Internet Explorer 10 Internet Explorer 11 in Web Worker - Safari 6 (prefixed as webkitURL) Safari 6 (prefixed as webkitURL) in Web Worker
This commit is contained in:
parent
4ffc408512
commit
69a64d45bc
2 changed files with 9 additions and 2 deletions
|
@ -92,6 +92,13 @@ if (typeof PDFJS === 'undefined') {
|
|||
window.Float64Array = TypedArray;
|
||||
})();
|
||||
|
||||
// URL = URL || webkitURL
|
||||
(function normalizeURLObject() {
|
||||
if (!window.URL && window.webkitURL) {
|
||||
window.URL = window.webkitURL;
|
||||
}
|
||||
})();
|
||||
|
||||
// Object.create() ?
|
||||
(function checkObjectCreateCompatibility() {
|
||||
if (typeof Object.create !== 'undefined')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue