mirror of
https://github.com/nasa/openmct.git
synced 2025-03-11 06:54:01 +00:00
18 lines
344 B
JavaScript
18 lines
344 B
JavaScript
|
/*global define*/
|
||
|
|
||
|
define(
|
||
|
[],
|
||
|
function () {
|
||
|
"use strict";
|
||
|
|
||
|
function LogoController(overlayService) {
|
||
|
return {
|
||
|
showAboutDialog: function () {
|
||
|
overlayService.createOverlay("overlay-about");
|
||
|
}
|
||
|
};
|
||
|
}
|
||
|
|
||
|
return LogoController;
|
||
|
}
|
||
|
);
|