openmct/platform/commonUI/about/src/LogoController.js

18 lines
344 B
JavaScript
Raw Normal View History

/*global define*/
define(
[],
function () {
"use strict";
function LogoController(overlayService) {
return {
showAboutDialog: function () {
overlayService.createOverlay("overlay-about");
}
};
}
return LogoController;
}
);