aboutsummaryrefslogtreecommitdiff
path: root/js/controllers/elements/element-controller.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/controllers/elements/element-controller.js')
-rwxr-xr-xjs/controllers/elements/element-controller.js38
1 files changed, 29 insertions, 9 deletions
diff --git a/js/controllers/elements/element-controller.js b/js/controllers/elements/element-controller.js
index e40a646a..fcb121ee 100755
--- a/js/controllers/elements/element-controller.js
+++ b/js/controllers/elements/element-controller.js
@@ -15,13 +15,32 @@ exports.ElementController = Montage.create(Component, {
15 15
16 if (el.getAttribute) el.setAttribute('data-ninja-node', 'true'); 16 if (el.getAttribute) el.setAttribute('data-ninja-node', 'true');
17 17
18 // Updated to use new methods in TimelinePanel. JR.
19 var insertionIndex = this.application.ninja.timeline.getInsertionIndex();
20 if (insertionIndex === false) {
21 this.application.ninja.currentDocument.model.domContainer.appendChild(el);
22 } else {
23 if (insertionIndex === 0) {
24 this.application.ninja.currentDocument.model.domContainer.appendChild(el);
25 } else {
26 var element = this.application.ninja.timeline.arrLayers[insertionIndex].layerData.stageElement;
27 element.parentNode.insertBefore(el, element.nextSibling);
28 }
29 }
30
31 if(styles) {
32 this.application.ninja.stylesController.setElementStyles(el, styles);
33 }
34
35 /*
36 // Old methods. Kept for reference. Delete if not needed. JR.
18 if(this.application.ninja.timeline.currentLayerSelected) { 37 if(this.application.ninja.timeline.currentLayerSelected) {
19 var selectedLayerIndex = this.application.ninja.timeline.getLayerIndexByID(this.application.ninja.timeline.currentLayerSelected.layerData.layerID); 38 var selectedLayerIndex = this.application.ninja.timeline.getLayerIndexByID(this.application.ninja.timeline.currentLayerSelected.layerData.layerID);
20 39
21 if(selectedLayerIndex === 0) { 40 if(selectedLayerIndex === 0) {
22 this.application.ninja.currentDocument.model.domContainer.appendChild(el); 41 this.application.ninja.currentDocument.model.domContainer.appendChild(el);
23 } else { 42 } else {
24 var element = this.application.ninja.timeline.arrLayers[selectedLayerIndex].layerData.elementsList[0]; 43 var element = this.application.ninja.timeline.arrLayers[selectedLayerIndex].layerData.stageElement;
25 element.parentNode.insertBefore(el, element.nextSibling); 44 element.parentNode.insertBefore(el, element.nextSibling);
26 } 45 }
27 } else { 46 } else {
@@ -31,6 +50,7 @@ exports.ElementController = Montage.create(Component, {
31 if(styles) { 50 if(styles) {
32 this.application.ninja.stylesController.setElementStyles(el, styles); 51 this.application.ninja.stylesController.setElementStyles(el, styles);
33 } 52 }
53 */
34 } 54 }
35 }, 55 },
36 56
@@ -83,24 +103,24 @@ exports.ElementController = Montage.create(Component, {
83 103
84 // Return cached value if one exists 104 // Return cached value if one exists
85 if(isFill) { 105 if(isFill) {
86 if(el.elementModel.fill) { 106// if(el.elementModel.fill) {
87 return el.elementModel.fill; 107// return el.elementModel.fill;
88 } 108// }
89 //TODO: Once logic for color and gradient is established, this needs to be revised 109 //TODO: Once logic for color and gradient is established, this needs to be revised
90 color = this.getProperty(el, "background-color"); 110 color = this.getProperty(el, "background-color");
91 image = this.getProperty(el, "background-image"); 111 image = this.getProperty(el, "background-image");
92 } else { 112 } else {
93 // Try getting border color from specific side first 113 // Try getting border color from specific side first
94 if(borderSide) { 114 if(borderSide) {
95 color = this.getProperty(el, "border-" + borderSide + "-color"); 115 color = this.getProperty(el, "border-" + borderSide + "-color",true);
96 image = this.getProperty(el, "border-" + borderSide + "-image"); 116 image = this.getProperty(el, "border-" + borderSide + "-image");
97 } 117 }
98 118
99 // If no color was found, look up the shared border color 119 // If no color was found, look up the shared border color
100 if(!color && !image) { 120 if(!color && !image) {
101 if(el.elementModel.stroke) { 121// if(el.elementModel.stroke) {
102 return el.elementModel.stroke; 122// return el.elementModel.stroke;
103 } 123// }
104 124
105 color = this.getProperty(el, "border-color"); 125 color = this.getProperty(el, "border-color");
106 image = this.getProperty(el, "border-image"); 126 image = this.getProperty(el, "border-image");
@@ -132,7 +152,7 @@ exports.ElementController = Montage.create(Component, {
132 }, 152 },
133 153
134 setColor: { 154 setColor: {
135 value: function(el, color, isFill) { 155 value: function(el, color, isFill,borderSide) {
136 var mode = color.mode; 156 var mode = color.mode;
137 157
138 if(isFill) { 158 if(isFill) {