mirror of
https://github.com/nasa/openmct.git
synced 2025-03-21 11:35:59 +00:00
[Edit] Restructure source folder
Restructure sources associated with Edit mode; work on WTD-788 has increased number of sources here so more organization is useful.
This commit is contained in:
parent
cb078e9620
commit
0d5a849a41
@ -9,12 +9,12 @@
|
||||
"controllers": [
|
||||
{
|
||||
"key": "EditController",
|
||||
"implementation": "EditController.js",
|
||||
"implementation": "controllers/EditController.js",
|
||||
"depends": [ "$scope", "navigationService" ]
|
||||
},
|
||||
{
|
||||
"key": "EditActionController",
|
||||
"implementation": "EditActionController.js",
|
||||
"implementation": "controllers/EditActionController.js",
|
||||
"depends": [ "$scope" ]
|
||||
},
|
||||
{
|
||||
@ -97,7 +97,7 @@
|
||||
],
|
||||
"representers": [
|
||||
{
|
||||
"implementation": "EditRepresenter.js",
|
||||
"implementation": "representers/EditRepresenter.js",
|
||||
"depends": [ "$q", "$log" ]
|
||||
},
|
||||
{
|
||||
|
@ -4,7 +4,7 @@
|
||||
* Module defining EditController. Created by vwoeltje on 11/14/14.
|
||||
*/
|
||||
define(
|
||||
["./objects/EditableDomainObject"],
|
||||
["../objects/EditableDomainObject"],
|
||||
function (EditableDomainObject) {
|
||||
"use strict";
|
||||
|
@ -1,7 +1,7 @@
|
||||
/*global define,describe,it,expect,beforeEach,jasmine*/
|
||||
|
||||
define(
|
||||
["../src/EditActionController"],
|
||||
["../../src/controllers/EditActionController"],
|
||||
function (EditActionController) {
|
||||
"use strict";
|
||||
|
@ -1,7 +1,7 @@
|
||||
/*global define,describe,it,expect,beforeEach,jasmine*/
|
||||
|
||||
define(
|
||||
["../src/EditController"],
|
||||
["../../src/controllers/EditController"],
|
||||
function (EditController) {
|
||||
"use strict";
|
||||
|
@ -1,7 +1,7 @@
|
||||
/*global define,describe,it,expect,beforeEach,jasmine*/
|
||||
|
||||
define(
|
||||
["../src/EditRepresenter"],
|
||||
["../../src/representers/EditRepresenter"],
|
||||
function (EditRepresenter) {
|
||||
"use strict";
|
||||
|
@ -1,7 +1,4 @@
|
||||
[
|
||||
"EditActionController",
|
||||
"EditController",
|
||||
"EditRepresenter",
|
||||
"actions/CancelAction",
|
||||
"actions/EditAction",
|
||||
"actions/PropertiesAction",
|
||||
@ -13,10 +10,13 @@
|
||||
"capabilities/EditableLookupCapability",
|
||||
"capabilities/EditablePersistenceCapability",
|
||||
"capabilities/EditorCapability",
|
||||
"controllers/EditActionController",
|
||||
"controllers/EditController",
|
||||
"controllers/EditPanesController",
|
||||
"objects/EditableDomainObject",
|
||||
"objects/EditableDomainObjectCache",
|
||||
"objects/EditableModelCache",
|
||||
"representers/EditRepresenter",
|
||||
"representers/EditToolbar",
|
||||
"representers/EditToolbarRepresenter"
|
||||
]
|
Loading…
x
Reference in New Issue
Block a user