aboutsummaryrefslogtreecommitdiff
path: root/js/panels/Timeline/TimelinePanel.reel/TimelinePanel.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/panels/Timeline/TimelinePanel.reel/TimelinePanel.js')
-rw-r--r--js/panels/Timeline/TimelinePanel.reel/TimelinePanel.js7
1 files changed, 5 insertions, 2 deletions
diff --git a/js/panels/Timeline/TimelinePanel.reel/TimelinePanel.js b/js/panels/Timeline/TimelinePanel.reel/TimelinePanel.js
index 734b051f..bb3ff170 100644
--- a/js/panels/Timeline/TimelinePanel.reel/TimelinePanel.js
+++ b/js/panels/Timeline/TimelinePanel.reel/TimelinePanel.js
@@ -702,6 +702,9 @@ var TimelinePanel = exports.TimelinePanel = Montage.create(Component, {
702 // cache Timeline data in currentDocument. 702 // cache Timeline data in currentDocument.
703 cacheTimeline: { 703 cacheTimeline: {
704 value: function() { 704 value: function() {
705 if (typeof(this.application.ninja) === "undefined") {
706 return;
707 }
705 // Store the timeline data in currentDocument... 708 // Store the timeline data in currentDocument...
706 if (this._boolCacheArrays) { 709 if (this._boolCacheArrays) {
707 // ... but only if we're supposed to. 710 // ... but only if we're supposed to.
@@ -1397,10 +1400,10 @@ var TimelinePanel = exports.TimelinePanel = Montage.create(Component, {
1397 // Ordinarily we could use this.getInsertionIndex BUT the new element 1400 // Ordinarily we could use this.getInsertionIndex BUT the new element
1398 // insertion and selection has already fired, so getInsertionIndex will return 1401 // insertion and selection has already fired, so getInsertionIndex will return
1399 // incorrect info. So we need to look at the DOM. 1402 // incorrect info. So we need to look at the DOM.
1400 var childrenLength = this.application.ninja.currentSelectedContainer.children.length, 1403 var childrenLength = this.application.ninja.currentDocument.model.domContainer.children.length,
1401 newIndex = childrenLength -1; 1404 newIndex = childrenLength -1;
1402 for (i = 0; i < childrenLength; i++) { 1405 for (i = 0; i < childrenLength; i++) {
1403 var currTest = this.application.ninja.currentSelectedContainer.children[i]; 1406 var currTest = this.application.ninja.currentDocument.model.domContainer.children[i];
1404 if (object == currTest) { 1407 if (object == currTest) {
1405 myIndex = newIndex - i; 1408 myIndex = newIndex - i;
1406 } 1409 }