Browse Source

Fix strict mode syntax error in Safari

This happens in Safari 5.1 and Mobile Safari on iOS 5.

Apparently, Safari considers the function name as part of the ECMA's
FormalParameterList and applies the strict mode rules from section 13.1
of the specification.

> It is a SyntaxError if any Identifier value occurs more than once
> within a FormalParameterList of a strict mode
> FunctionDeclaration or FunctionExpression.
Ionuț G. Stan 14 years ago
parent
commit
a17b13019b
  1. 8
      pdf.js

8
pdf.js

@ -7522,19 +7522,19 @@ var Promise = (function() {
Promise.prototype = { Promise.prototype = {
hasData: false, hasData: false,
set data(data) { set data(value) {
if (data === undefined) { if (value === undefined) {
return; return;
} }
if (this._data !== EMPTY_PROMISE) { if (this._data !== EMPTY_PROMISE) {
throw 'Promise ' + this.name + throw 'Promise ' + this.name +
': Cannot set the data of a promise twice'; ': Cannot set the data of a promise twice';
} }
this._data = data; this._data = value;
this.hasData = true; this.hasData = true;
if (this.onDataCallback) { if (this.onDataCallback) {
this.onDataCallback(data); this.onDataCallback(value);
} }
}, },

Loading…
Cancel
Save