mirror of
https://github.com/nasa/openmct.git
synced 2025-06-16 14:18:16 +00:00
[Timer] Back-end code cleanup and removed unused code
Cleaned up code by removing unused and unneeded code and the tests associated with it
This commit is contained in:
@ -52,12 +52,9 @@ define(
|
||||
self.textValue = formatter(timeDelta);
|
||||
self.signValue = timeDelta < 0 ? "-" :
|
||||
timeDelta >= 1000 ? "+" : "";
|
||||
self.signCssClass = timeDelta < 0 ? "icon-minus" :
|
||||
timeDelta >= 1000 ? "icon-plus" : "";
|
||||
} else {
|
||||
self.textValue = "";
|
||||
self.signValue = "";
|
||||
self.signCssClass = "";
|
||||
}
|
||||
}
|
||||
|
||||
@ -199,26 +196,6 @@ define(
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Get the CSS class to display the stop button
|
||||
* @returns {string} cssclass to display
|
||||
*/
|
||||
TimerController.prototype.stopButtonCssClass = function () {
|
||||
return this.stopAction ?
|
||||
this.stopAction.getMetadata().cssclass : '';
|
||||
};
|
||||
|
||||
/**
|
||||
* Get the text to show the stop button
|
||||
* (e.g. in a tooltip)
|
||||
* @returns {string} name of the action
|
||||
*/
|
||||
TimerController.prototype.stopButtonText = function () {
|
||||
return this.stopAction ?
|
||||
this.stopAction.getMetadata().name : '';
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
* Perform the action associated with the stop button.
|
||||
*/
|
||||
@ -238,15 +215,6 @@ define(
|
||||
return this.signValue;
|
||||
};
|
||||
|
||||
/**
|
||||
* Get the sign (+ or -) of the current timer value, as
|
||||
* a CSS class.
|
||||
* @returns {string} sign of the current timer value
|
||||
*/
|
||||
TimerController.prototype.signClass = function () {
|
||||
return this.signCssClass;
|
||||
};
|
||||
|
||||
/**
|
||||
* Get the text to display for the current timer value.
|
||||
* @returns {string} current timer value
|
||||
|
Reference in New Issue
Block a user