diff options
author | Jonathan Duran | 2012-05-31 09:05:11 -0700 |
---|---|---|
committer | Jonathan Duran | 2012-05-31 09:05:11 -0700 |
commit | 121d0e616f48aa7cd048763554089c20a1883d7a (patch) | |
tree | c7ce8609a517f15399f02edd91dab7c40d106b9b | |
parent | f297093b5bfa62c9832829751a12f0e556bb5cc0 (diff) | |
download | ninja-121d0e616f48aa7cd048763554089c20a1883d7a.tar.gz |
fix doc model in prop track
Signed-off-by: Jonathan Duran <jduran@motorola.com>
-rw-r--r-- | js/panels/Timeline/PropertyTrack.reel/PropertyTrack.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/panels/Timeline/PropertyTrack.reel/PropertyTrack.js b/js/panels/Timeline/PropertyTrack.reel/PropertyTrack.js index d785ea3e..1e495402 100644 --- a/js/panels/Timeline/PropertyTrack.reel/PropertyTrack.js +++ b/js/panels/Timeline/PropertyTrack.reel/PropertyTrack.js | |||
@@ -31,7 +31,7 @@ var PropertyTrack = exports.PropertyTrack = Montage.create(Component, { | |||
31 | didDraw:{ | 31 | didDraw:{ |
32 | value:function () { | 32 | value:function () { |
33 | if ((!this.application.ninja.documentController.creatingNewFile) || (!this.application.ninja.currentDocument.setLevel)) { | 33 | if ((!this.application.ninja.documentController.creatingNewFile) || (!this.application.ninja.currentDocument.setLevel)) { |
34 | if (this.application.ninja.currentDocument.documentRoot.children[0]) { | 34 | if (this.application.ninja.currentDocument.model.documentRoot.children[0]) { |
35 | var selectedIndex = this.application.ninja.timeline.getLayerIndexByID(this.trackID); | 35 | var selectedIndex = this.application.ninja.timeline.getLayerIndexByID(this.trackID); |
36 | if (selectedIndex !== false) { | 36 | if (selectedIndex !== false) { |
37 | if (!this.application.ninja.timeline.arrLayers[selectedIndex].layerData.created) { | 37 | if (!this.application.ninja.timeline.arrLayers[selectedIndex].layerData.created) { |