[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:
Victor Woeltjen 2014-12-01 18:21:51 -08:00
parent ad802e674e
commit 86711735b7
8 changed files with 17 additions and 9 deletions

View File

@ -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 = [

View File

@ -1,7 +1,7 @@
/*global define,moment*/ /*global define,moment*/
define( define(
["../lib/moment.min"], ["../../lib/moment.min"],
function () { function () {
"use strict"; "use strict";