diff options
Diffstat (limited to 'js/controllers')
-rwxr-xr-x | js/controllers/elements/element-controller.js | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/js/controllers/elements/element-controller.js b/js/controllers/elements/element-controller.js index eecf319e..925fc959 100755 --- a/js/controllers/elements/element-controller.js +++ b/js/controllers/elements/element-controller.js | |||
@@ -11,6 +11,33 @@ exports.ElementController = Montage.create(Component, { | |||
11 | 11 | ||
12 | addElement: { | 12 | addElement: { |
13 | value: function(el, styles) { | 13 | value: function(el, styles) { |
14 | // Updated to use new methods in TimelinePanel. JR. | ||
15 | var insertionIndex = this.application.ninja.timeline.getInsertionIndex(); | ||
16 | console.log("elementcontroller.addElement, insertionIndex = ", insertionIndex); | ||
17 | //debugger; | ||
18 | if (insertionIndex === false) { | ||
19 | this.application.ninja.currentSelectedContainer.appendChild(el); | ||
20 | } else { | ||
21 | if (insertionIndex === 0) { | ||
22 | this.application.ninja.currentSelectedContainer.appendChild(el); | ||
23 | } else { | ||
24 | /* | ||
25 | if (insertionIndex === this.application.ninja.timeline.arrLayers.length-1) { | ||
26 | this.application.ninja.currentSelectedContainer.appendChild(el); | ||
27 | } else { | ||
28 | */ | ||
29 | var element = this.application.ninja.timeline.arrLayers[insertionIndex].layerData.stageElement; | ||
30 | element.parentNode.insertBefore(el, element.nextSibling); | ||
31 | //} | ||
32 | } | ||
33 | } | ||
34 | |||
35 | if(styles) { | ||
36 | this.application.ninja.stylesController.setElementStyles(el, styles); | ||
37 | } | ||
38 | |||
39 | /* | ||
40 | // Old methods. Kept for reference. Delete if not needed. JR. | ||
14 | if(this.application.ninja.timeline.currentLayerSelected) { | 41 | if(this.application.ninja.timeline.currentLayerSelected) { |
15 | var selectedLayerIndex = this.application.ninja.timeline.getLayerIndexByID(this.application.ninja.timeline.currentLayerSelected.layerData.layerID); | 42 | var selectedLayerIndex = this.application.ninja.timeline.getLayerIndexByID(this.application.ninja.timeline.currentLayerSelected.layerData.layerID); |
16 | 43 | ||
@@ -27,6 +54,7 @@ exports.ElementController = Montage.create(Component, { | |||
27 | if(styles) { | 54 | if(styles) { |
28 | this.application.ninja.stylesController.setElementStyles(el, styles); | 55 | this.application.ninja.stylesController.setElementStyles(el, styles); |
29 | } | 56 | } |
57 | */ | ||
30 | } | 58 | } |
31 | }, | 59 | }, |
32 | 60 | ||