mirror of
https://github.com/nasa/openmct.git
synced 2025-01-07 05:38:42 +00:00
25 lines
428 B
JavaScript
25 lines
428 B
JavaScript
|
/*global define*/
|
||
|
|
||
|
define(
|
||
|
[],
|
||
|
function () {
|
||
|
"use strict";
|
||
|
|
||
|
function CouchIndicator($http, $interval, PATH, INTERVAL) {
|
||
|
function updateIndicator() {
|
||
|
|
||
|
}
|
||
|
|
||
|
$interval(updateIndicator, INTERVAL);
|
||
|
|
||
|
return {
|
||
|
getGlyph: function () {
|
||
|
return "D";
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
return CouchIndicator;
|
||
|
}
|
||
|
);
|