[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:
@@ -9,12 +9,12 @@
|
|||||||
"controllers": [
|
"controllers": [
|
||||||
{
|
{
|
||||||
"key": "EditController",
|
"key": "EditController",
|
||||||
"implementation": "EditController.js",
|
"implementation": "controllers/EditController.js",
|
||||||
"depends": [ "$scope", "navigationService" ]
|
"depends": [ "$scope", "navigationService" ]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"key": "EditActionController",
|
"key": "EditActionController",
|
||||||
"implementation": "EditActionController.js",
|
"implementation": "controllers/EditActionController.js",
|
||||||
"depends": [ "$scope" ]
|
"depends": [ "$scope" ]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -97,7 +97,7 @@
|
|||||||
],
|
],
|
||||||
"representers": [
|
"representers": [
|
||||||
{
|
{
|
||||||
"implementation": "EditRepresenter.js",
|
"implementation": "representers/EditRepresenter.js",
|
||||||
"depends": [ "$q", "$log" ]
|
"depends": [ "$q", "$log" ]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
* Module defining EditController. Created by vwoeltje on 11/14/14.
|
* Module defining EditController. Created by vwoeltje on 11/14/14.
|
||||||
*/
|
*/
|
||||||
define(
|
define(
|
||||||
["./objects/EditableDomainObject"],
|
["../objects/EditableDomainObject"],
|
||||||
function (EditableDomainObject) {
|
function (EditableDomainObject) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
/*global define,describe,it,expect,beforeEach,jasmine*/
|
/*global define,describe,it,expect,beforeEach,jasmine*/
|
||||||
|
|
||||||
define(
|
define(
|
||||||
["../src/EditActionController"],
|
["../../src/controllers/EditActionController"],
|
||||||
function (EditActionController) {
|
function (EditActionController) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
/*global define,describe,it,expect,beforeEach,jasmine*/
|
/*global define,describe,it,expect,beforeEach,jasmine*/
|
||||||
|
|
||||||
define(
|
define(
|
||||||
["../src/EditController"],
|
["../../src/controllers/EditController"],
|
||||||
function (EditController) {
|
function (EditController) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
/*global define,describe,it,expect,beforeEach,jasmine*/
|
/*global define,describe,it,expect,beforeEach,jasmine*/
|
||||||
|
|
||||||
define(
|
define(
|
||||||
["../src/EditRepresenter"],
|
["../../src/representers/EditRepresenter"],
|
||||||
function (EditRepresenter) {
|
function (EditRepresenter) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
@@ -1,7 +1,4 @@
|
|||||||
[
|
[
|
||||||
"EditActionController",
|
|
||||||
"EditController",
|
|
||||||
"EditRepresenter",
|
|
||||||
"actions/CancelAction",
|
"actions/CancelAction",
|
||||||
"actions/EditAction",
|
"actions/EditAction",
|
||||||
"actions/PropertiesAction",
|
"actions/PropertiesAction",
|
||||||
@@ -13,10 +10,13 @@
|
|||||||
"capabilities/EditableLookupCapability",
|
"capabilities/EditableLookupCapability",
|
||||||
"capabilities/EditablePersistenceCapability",
|
"capabilities/EditablePersistenceCapability",
|
||||||
"capabilities/EditorCapability",
|
"capabilities/EditorCapability",
|
||||||
|
"controllers/EditActionController",
|
||||||
|
"controllers/EditController",
|
||||||
"controllers/EditPanesController",
|
"controllers/EditPanesController",
|
||||||
"objects/EditableDomainObject",
|
"objects/EditableDomainObject",
|
||||||
"objects/EditableDomainObjectCache",
|
"objects/EditableDomainObjectCache",
|
||||||
"objects/EditableModelCache",
|
"objects/EditableModelCache",
|
||||||
|
"representers/EditRepresenter",
|
||||||
"representers/EditToolbar",
|
"representers/EditToolbar",
|
||||||
"representers/EditToolbarRepresenter"
|
"representers/EditToolbarRepresenter"
|
||||||
]
|
]
|
||||||
Reference in New Issue
Block a user