mirror of
https://github.com/nasa/openmct.git
synced 2025-06-18 07:08:12 +00:00
[About] Add JSDoc
Add in-line documentation to controllers introduced to support the About dialog. WTD-667.
This commit is contained in:
@ -5,8 +5,18 @@ define(
|
||||
function () {
|
||||
"use strict";
|
||||
|
||||
/**
|
||||
* The LogoController provides functionality to the application
|
||||
* logo in the bottom-right of the user interface.
|
||||
* @constructor
|
||||
* @param {OverlayService} overlayService the overlay service
|
||||
*/
|
||||
function LogoController(overlayService) {
|
||||
return {
|
||||
/**
|
||||
* Display the About dialog.
|
||||
* @memberof LogoController#
|
||||
*/
|
||||
showAboutDialog: function () {
|
||||
overlayService.createOverlay("overlay-about");
|
||||
}
|
||||
|
Reference in New Issue
Block a user