mirror of
https://github.com/nasa/openmct.git
synced 2025-05-31 22:50:49 +00:00
[Persistence] Invoke parent constructor
This commit is contained in:
parent
73d10ab093
commit
353c24c70e
@ -22,6 +22,7 @@
|
|||||||
define(['./Transaction'], function (Transaction) {
|
define(['./Transaction'], function (Transaction) {
|
||||||
function NestedTransaction(parent) {
|
function NestedTransaction(parent) {
|
||||||
this.parent = parent;
|
this.parent = parent;
|
||||||
|
Transaction.call(this, parent.$log);
|
||||||
}
|
}
|
||||||
|
|
||||||
NestedTransaction.prototype = Object.create(Transaction.prototype);
|
NestedTransaction.prototype = Object.create(Transaction.prototype);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user