mirror of
https://github.com/nasa/openmct.git
synced 2024-12-19 05:07:52 +00:00
reverted AbstractComposeAction
This commit is contained in:
parent
fa7131ad5c
commit
05481dcab5
@ -70,10 +70,6 @@ define(
|
||||
* @param {string} verb the verb to display for the action (e.g. "Move")
|
||||
* @param {string} [suffix] a string to display in the dialog title;
|
||||
* default is "to a new location"
|
||||
* @param {function} progressCallback a callback function that will
|
||||
* be invoked to update invoker on progress. This is optional and
|
||||
* may not be implemented by all composing actions. The signature of
|
||||
* the callback function will depend on the service being invoked.
|
||||
*/
|
||||
function AbstractComposeAction(locationService, composeService, context, verb, suffix) {
|
||||
if (context.selectedObject) {
|
||||
@ -93,7 +89,7 @@ define(
|
||||
this.suffix = suffix || "to a new location";
|
||||
}
|
||||
|
||||
AbstractComposeAction.prototype.perform = function (progressCallback) {
|
||||
AbstractComposeAction.prototype.perform = function () {
|
||||
var dialogTitle,
|
||||
label,
|
||||
validateLocation,
|
||||
@ -122,7 +118,7 @@ define(
|
||||
validateLocation,
|
||||
currentParent
|
||||
).then(function (newParent) {
|
||||
return composeService.perform(object, newParent, progressCallback);
|
||||
return composeService.perform(object, newParent);
|
||||
});
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user