[Edit] Refer to correct variable

...when clearing transactions after a restartTransaction
This commit is contained in:
Victor Woeltjen 2016-06-22 14:52:43 -07:00
parent b60e94bce4
commit 1f525160e0

View File

@ -153,7 +153,7 @@ define(
return function () {
while (oldOnCancels.length > 0) {
var onCancel = this.onCancels.pop();
var onCancel = oldOnCancels.pop();
try {
onCancel();
} catch (error) {