mirror of
https://github.com/nasa/openmct.git
synced 2025-05-06 18:48:27 +00:00
21 lines
392 B
JavaScript
21 lines
392 B
JavaScript
/*global define,Promise*/
|
|
|
|
/**
|
|
* Module defining ExampleController. Created by vwoeltje on 11/4/14.
|
|
*/
|
|
define(
|
|
[],
|
|
function () {
|
|
"use strict";
|
|
|
|
/**
|
|
*
|
|
* @constructor
|
|
*/
|
|
function ExampleController($scope, exampleService) {
|
|
$scope.phrase = exampleService.getMessage();
|
|
}
|
|
|
|
return ExampleController;
|
|
}
|
|
); |