mirror of
https://github.com/nasa/openmct.git
synced 2025-01-16 01:40:06 +00:00
23 lines
406 B
JavaScript
23 lines
406 B
JavaScript
|
/*global define,Promise*/
|
||
|
|
||
|
/**
|
||
|
* Module defining ExampleDirective. Created by vwoeltje on 11/4/14.
|
||
|
*/
|
||
|
define(
|
||
|
[],
|
||
|
function () {
|
||
|
"use strict";
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @constructor
|
||
|
*/
|
||
|
function ExampleDirective() {
|
||
|
return {
|
||
|
template: "And this came from a directive."
|
||
|
};
|
||
|
}
|
||
|
|
||
|
return ExampleDirective;
|
||
|
}
|
||
|
);
|