mirror of
https://github.com/nasa/openmct.git
synced 2024-12-20 13:43:09 +00:00
[Clocks/Timers] Fix parent constructor invocations
This commit is contained in:
parent
714ae3b9dc
commit
7871af07c4
@ -41,10 +41,7 @@ define(
|
||||
* @param {ActionContext} context the context for this action
|
||||
*/
|
||||
function RestartTimerAction(now, context) {
|
||||
AbstractStartTimerAction.prototype.apply(
|
||||
this,
|
||||
[ now, context ]
|
||||
);
|
||||
AbstractStartTimerAction.apply(this, [ now, context ]);
|
||||
}
|
||||
|
||||
RestartTimerAction.prototype =
|
||||
|
@ -41,10 +41,7 @@ define(
|
||||
* @param {ActionContext} context the context for this action
|
||||
*/
|
||||
function StartTimerAction(now, context) {
|
||||
AbstractStartTimerAction.prototype.apply(
|
||||
this,
|
||||
[ now, context ]
|
||||
);
|
||||
AbstractStartTimerAction.apply(this, [ now, context ]);
|
||||
}
|
||||
|
||||
StartTimerAction.prototype =
|
||||
|
Loading…
Reference in New Issue
Block a user