mirror of
https://github.com/nasa/openmct.git
synced 2025-05-06 18:48:27 +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(
|
define(
|
||||||
[
|
[
|
||||||
"./PlotPreparer",
|
"./elements/PlotPreparer",
|
||||||
"./PlotPalette",
|
"./elements/PlotPalette",
|
||||||
"./PlotPanZoomStack",
|
"./elements/PlotPanZoomStack",
|
||||||
"./PlotPosition",
|
"./elements/PlotPosition",
|
||||||
"./PlotTickGenerator",
|
"./elements/PlotTickGenerator",
|
||||||
"./PlotFormatter",
|
"./elements/PlotFormatter",
|
||||||
"./PlotAxis"
|
"./elements/PlotAxis"
|
||||||
],
|
],
|
||||||
function (PlotPreparer, PlotPalette, PlotPanZoomStack, PlotPosition, PlotTickGenerator, PlotFormatter, PlotAxis) {
|
function (
|
||||||
|
PlotPreparer,
|
||||||
|
PlotPalette,
|
||||||
|
PlotPanZoomStack,
|
||||||
|
PlotPosition,
|
||||||
|
PlotTickGenerator,
|
||||||
|
PlotFormatter,
|
||||||
|
PlotAxis
|
||||||
|
) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
var AXIS_DEFAULTS = [
|
var AXIS_DEFAULTS = [
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/*global define,moment*/
|
/*global define,moment*/
|
||||||
|
|
||||||
define(
|
define(
|
||||||
["../lib/moment.min"],
|
["../../lib/moment.min"],
|
||||||
function () {
|
function () {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user