-
Notifications
You must be signed in to change notification settings - Fork 221
Open
Description
TypeError: this is undefined
TextOperation.prototype.equals = function (other) {
if (this.baseLength !== other.baseLength) { return false; }
if (this.targetLength !== other.targetLength) { return false; }
if (this.ops.length !== other.ops.length) { return false; }
for (var i = 0; i < this.ops.length; i++) {
if (this.ops[i] !== other.ops[i]) { return false; }
}
return true;
};
I'm using combined script for browser and get this error.
Metadata
Metadata
Assignees
Labels
No labels