mirror of
https://github.com/nasa/openmct.git
synced 2024-12-21 06:03:08 +00:00
[Plot] Organize plot elements
Place elements of the PlotController into a separate directory inside of the source folder for the plot plug-in, in preparation for review and integration. Part of ongoing plot transition to Angular, WTD-533.
This commit is contained in:
parent
ad802e674e
commit
86711735b7
@ -5,15 +5,23 @@
|
||||
*/
|
||||
define(
|
||||
[
|
||||
"./PlotPreparer",
|
||||
"./PlotPalette",
|
||||
"./PlotPanZoomStack",
|
||||
"./PlotPosition",
|
||||
"./PlotTickGenerator",
|
||||
"./PlotFormatter",
|
||||
"./PlotAxis"
|
||||
"./elements/PlotPreparer",
|
||||
"./elements/PlotPalette",
|
||||
"./elements/PlotPanZoomStack",
|
||||
"./elements/PlotPosition",
|
||||
"./elements/PlotTickGenerator",
|
||||
"./elements/PlotFormatter",
|
||||
"./elements/PlotAxis"
|
||||
],
|
||||
function (PlotPreparer, PlotPalette, PlotPanZoomStack, PlotPosition, PlotTickGenerator, PlotFormatter, PlotAxis) {
|
||||
function (
|
||||
PlotPreparer,
|
||||
PlotPalette,
|
||||
PlotPanZoomStack,
|
||||
PlotPosition,
|
||||
PlotTickGenerator,
|
||||
PlotFormatter,
|
||||
PlotAxis
|
||||
) {
|
||||
"use strict";
|
||||
|
||||
var AXIS_DEFAULTS = [
|
||||
|
@ -1,7 +1,7 @@
|
||||
/*global define,moment*/
|
||||
|
||||
define(
|
||||
["../lib/moment.min"],
|
||||
["../../lib/moment.min"],
|
||||
function () {
|
||||
"use strict";
|
||||
|
Loading…
Reference in New Issue
Block a user