diff options
author | Ananya Sen | 2012-02-29 10:12:38 -0800 |
---|---|---|
committer | Ananya Sen | 2012-02-29 10:12:38 -0800 |
commit | 7a9c2a91dfbbdd0cd7c79d81be5aeecd7887e7f1 (patch) | |
tree | 27c7f39c01551d534fa8fa470fe2785bbf3d381b /js/panels/properties | |
parent | 1c7e86b6c2c802d720cc3075f75c7a61866ebc07 (diff) | |
download | ninja-7a9c2a91dfbbdd0cd7c79d81be5aeecd7887e7f1.tar.gz |
handle selections for switching documents
Signed-off-by: Ananya Sen <Ananya.Sen@motorola.com>
Diffstat (limited to 'js/panels/properties')
-rwxr-xr-x | js/panels/properties/content.reel/content.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/js/panels/properties/content.reel/content.js b/js/panels/properties/content.reel/content.js index e92fbcb2..fcd85675 100755 --- a/js/panels/properties/content.reel/content.js +++ b/js/panels/properties/content.reel/content.js | |||
@@ -81,6 +81,12 @@ exports.Content = Montage.create(Component, { | |||
81 | // For now always assume that the stage is selected by default | 81 | // For now always assume that the stage is selected by default |
82 | if(this.application.ninja.selectedElements.length === 0) { | 82 | if(this.application.ninja.selectedElements.length === 0) { |
83 | this.displayStageProperties(); | 83 | this.displayStageProperties(); |
84 | }else{ | ||
85 | if(this.application.ninja.selectedElements.length === 1) { | ||
86 | this.displayElementProperties(this.application.ninja.selectedElements[0]._element); | ||
87 | } else { | ||
88 | this.displayGroupProperties(this.application.ninja.selectedElements); | ||
89 | } | ||
84 | } | 90 | } |
85 | } | 91 | } |
86 | }, | 92 | }, |